
.thing {
    display: flex;
    
}

.gallery{
   display: flex;
   justify-content: center;
   align-items: center;
}

.presentation{
    display: flex;
    justify-items: auto;
}

.subtext{
    justify-self:last baseline;
    align-content: flex-end;
}

.material-list{
    font-style: italic;
}


.gbody {
    display: grid;
}

.music {
    background-color: lightblue;
    height: 500px;
    width: 500px;
    display: grid;
    border-style: dotted;
    border-radius: 250px;
}

.note {
    width: 20vmin;
    height: 25vmin;
    position: relative;
    transform: scale(0.1, 0.1);
    grid-row: 1;
    grid-column: 1;
}

.nut {
    width: 11vmin;
    height: 6vmin;
    border-style: solid;
    border-radius: 50% 50% 50% 53% / 50% 50% 50% 50%;
    background-color: black;
    display: inline-block;
    position: absolute;
    transform-origin: right;
    transform: rotateZ(-20deg);
    bottom: 0;
    left: 0;

}

.stave {
    width: 1vmin;
    height: 15vmin;
    background-color: black;
    position: absolute;
    bottom: 3vmin;
    left: 11vmin;
    display: inline-block;
}

.flag {
    background-color: black;
    width: 9vmin;
    height: 3vmin;
    border-style: solid;
    position: absolute;
    top: 5vmin;
    left: 12vmin;
    transform-origin: left;
    transform: rotateZ(30deg);
    clip-path: polygon(0% 50%, 0% 100%, 31% 53%, 32% 51%, 35% 50%, 37% 51%, 39% 53%, 66% 97%, 68% 99%, 70% 100%, 72% 99%, 74%97%, 100% 50%, 100% 50%, 100% 0%, 74% 47%, 72% 49%, 70% 50%, 68% 49%, 66% 47%, 39% 3%, 37% 1%, 35% 0%, 33% 1%, 31% 3%);
}

.eigth {
    top: 5vmin;
}

.sixteenth {
    top: 10vmin;
}

.guitar-container {
    transform: translate(180px);
    -moz-transform: translate(180px);
    -webkit-transform: translate(180px);
}

.guitar {
    margin-top: 0%;
    height: 100px;
    display: flex;
    align-items: center;
    position: relative;

    transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    animation: guitar-move 4s ease-in 0s infinite;
    -moz-animation: guitar-move 4s ease-in 0s infinite;
    -webkit-animation: guitar-move 4s ease-in 0s infinite;

}



.cylinder {
    height: 100px;
    width: 100px;
    background-color: rgb(180, 110, 63);
    border-style: hidden;
    border-radius: 40px 50px 50px 40px;
    grid-column: 1;
    grid-row: 1;
    position: relative;
    display: flex;
    align-items: center;

    box-shadow:
    1px 1px 0 1px #352602,
    -1px 0 28px 0 rgba(34, 33, 81, 0.01),
    28px 28px 28px 0 rgba(34, 33, 81, 0.25);


}

.back {
    outline-style: solid;
    outline-color: black;
}

.front {

    height: 70px;
    width: 70px;

    transform: translate(70px, 15px);
    -moz-transform: translate(70px, 15px);
    -webkit-transform: translate(70px, 15px);
}

.soundhole {
    background-color: black;
    height: 25px;
    width: 25px;
    margin-left: 5px;
    border-style: hidden;
    border-radius: 10px;
    grid-column: 1;
    grid-row: 1;
}

.fretboard {
    border-style: hidden;
    background-color: black;
    height: 20px;
    width: 100px;
    display: flex;
}

.head {
    height: 40px;
    width: 40px;
    background-color: rgb(180, 110, 63);
    clip-path: polygon(0% 20%, 100% 10%, 100% 90%, 0% 80%);
}

.n1 {
    animation: fast-note 3s ease-in 0s infinite;
}

.n2 {
    animation: steady-note 4s ease 0s infinite;
}

.n3 {
    animation: slow-note 5s ease 0s infinite;
}

.n4 {
    animation: slow-note 1s ease 0s infinite;
}

.n5 {
    animation: steady-note 2s ease-out 0s infinite;
}

.n6 {
animation: slow-note-drop 3s ease-in 1s infinite;
}

.subtext{
    color: #9999aa;

}

@keyframes fast-note {
    0% {
        left: 0px;
        top: 0px;
    }

    10% {
        left: 80px;
        top: 60px;
    }

    20% {
        left: 90px;
        top: 100px;
    }

    30% {
        left: 120px;
        top: 130px;
    }

    40% {
        left: 150px;
        top: 140px;
    }

    50% {
        left: 120px;
        top: 150px;
    }

    60% {
        left: 200px;
        top: 180px;
    }

    70% {
        left: 240px;
        top: 220px;
    }

    80% {
        left: 280px;
        top: 250px;
    }

    90% {
        left: 300px;
        top: 240px;
    }

    100% {
        display: none;
        left: 300px;
        top: 240px;
    }
}

@keyframes steady-note {
    0% {
        left: 0px;
        top: 0px;
    }

    10% {
        left: 20px;
        top: 40px;
    }

    20% {
        left: 30px;
        top: 100px;
    }

    30% {
        left: 50px;
        top: 130px;
    }

    40% {
        left: 70px;
        top: 140px;
    }

    50% {
        left: 80px;
        top: 150px;
    }

    60% {
        left: 110px;
        top: 180px;
    }

    70% {
        left: 100px;
        top: 220px;
    }

    80% {
        left: 90px;
        top: 250px;
    }

    90% {
        left: 70px;
        top: 240px;
    }

    100% {
        display: none;
        left: 90px;
        top: 240px;
    }
}

@keyframes slow-note {
    0% {
        left: 10px;
        top: 10px;
    }

    90% {
        left: 220px;
        top: 60px;
    }

    100% {
        display: none;
    }
}

@keyframes slow-note-drop {
    0% {
        left: 10px;
        top: 10px;
    }

    90% {
        left: 60px;
        top: 200px;
    }

    100% {
        display: none;
    }
}

@keyframes guitar-move {
    0% {
        left: 40%;
        top: 0%
    }

    35% {
        left: 43%;
        top: 2%
    }

    70% {
        left: 42%;
        top: 2%
    }

    100% {
        left: 40%;
        top: 1%
    }
}