body {
    box-sizing: border-box;
    margin: 0;
}
header {
    text-align: center;
    background-color: #bec8d1;
    margin: 0;
}
.head1{
    color: #e12885;

    text-shadow: black 3px 6px;
    font-family: "Lucida Sans";
    font-size: 60px;
    font-weight: bold;
    padding-top: 20px;

}
.head2{
    font-family: "Lucida Sans";
    color: black;
    font-size: 30px;
    padding: 25px;
}
.headQuestion{
    font-family: "Trebuchet MS";
    color: black;
    font-size: 40px;
    padding: 7px;
    font-weight: bold;

    line-height: 40px;
}
.navbar ul{
    font-family: "Lucida Sans";
    position: absolute;
    list-style-type: none;
    height: 1000px;
    background-color: #373b3e;
    margin: 0;
    padding:0;
}



.submenustuff{
    display: none;
    position: absolute;
    width: 100%;
    background-color: #373b3e;
}
.submenustuff a{
    font-size: 20px;
}
.submenu:hover .submenustuff {
    display: block;
}

.notcurrentnav{
    color: #e12885;
    text-shadow: black 1px 4px;
    text-align: center;
    padding: 30px;
    display: block;
    font-size: 30px;
    text-decoration: none;
}
.currentnav{
    color: white;
    text-shadow: black 1px 4px;
    text-align: center;
    padding: 30px;
    display: block;
    font-size: 30px;
    text-decoration: none;
}
.notcurrentnav:hover{
    transition: all 0.3s ease-out;
    color: white;
    background-color: black;
}

.content {
    background-color: #86cecb;
    bottom: 0;
    height: 1000px;
    text-align: center;
}

.flexContainer{
    padding-top: 50px;
    overflow: hidden;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    display: flex;

    align-content: center;
    flex-direction: row;
}
.textboxMiku{
    margin-left: 200px;
    width: 40%;
    font-size: 25px;
    line-height: 25px;
}
div.picture{
    margin: 5px;
    border: 1px solid white;
    width: 500px;
    background-color: #a1cdcb;
}
@keyframes miku-pic{
    from {
        transform:
                translateY(-400%);
        opacity: 0;
    }
    to {
        transform:
                translateY(0%);
        opacity: 1;
    }
}
div.picture img {
    width: 100%;
    height: auto;
    animation: miku-pic 0.8s;
}

div.picture:hover {
    border: 1px solid #6c6b6b;
}
div.desc {
    font-family: "Trebuchet MS";
    font-size: 18px;
    padding: 15px;
    text-align: center;
}
.zoompic{
    transition: transform .2s;
}
.zoompiclong{
    transition: transform .2s;
}
.zoompic:hover{
    transform: scale(2.5);
}
.zoompiclong:hover{
    transform: scale(1.88);
}
.tdpic{
    display: flex;
    justify-content: center;
    align-items: center;
}

table,th,td{
    border: 1px solid black;
    background-color: #a1cdcb;
}
#tablehead{
    color: #e12885;
    text-shadow: black 2px 2px;
    font-family: "Lucida Sans";
    font-size: 30px;
    font-weight: bold;
    padding: 15px;
}

td{
    width:500px;
    height:500px
}
#musicTable{
    font-family: "Trebuchet MS";
    margin-left: 300px;
    margin-right: 40px;
    font-size: 25px;
    text-align: center;
    background-color: #a1cdcb;
}
.hidden{
    display: none;
}

.bold::first-line{
    font-weight: bold;
}

footer{
    display: block;
    clear: both;
    bottom: 0;
    margin-bottom: 0;
    width: 100%;
    background-color: #d3d0d0;
    font-size: 20px;
    color: #000000;
    text-align: center;

}

@media screen and (max-width: 1080px){
    .head1{
        font-size: 50px;
    }
    .navbar ul{
        float: none;
        position: absolute;
        width: 100%;
        height: auto;

    }
    .notcurrentnav {
        float: left;
        font-size: 15px;
        padding: 15px;
    }
    .currentnav{
        float: left;
        font-size: 15px;
        padding: 15px;
    }
    .textboxMiku{
        margin-left: 0;
        margin-top: 5px;
    }
    .headQuestion{
        font-size: 20px;
        font-weight: bold;
        padding-top: 20px;
        line-height: 23px;
    }
    .textboxMiku{
        font-size: 15px;
        line-height: 15px;
        width:80%;
        padding-right: 40px;
        padding-left: 40px;
    }
    .submenustuff a{
        font-size: 14px;
    }
    .submenustuff{
        float: right;
        height: auto;
        overflow: hidden;
        top: 46px;
    }
    .submenu{
        display: block;
        z-index: 2;
        width: 100%;
    }
    .flexContainer{
        flex-direction: column;
    }
    div.picture{
        width: 300px;
    }
    .content{
        height: 220vh;
    }

    #musicTable{
        font-size: 15px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .tdpic{
        display: none;
    }
    div.desc{
        font-size: 10px;
    }
    .hidden{
        display: block;
    }
    .zoompic:hover{
        transform: scale(1.9);
    }
    .zoompiclong:hover{
        transform: scale(1.4);
    }
    td{
        width: 400px;
        height: 400px;
    }
}