body {
    background-image: url(assets/dot-grid-texture.png);
    background-repeat: repeat;
    background-size: 400px;
    font-family: 'Indie Flower', cursive;
    max-width: 800px;
    margin: auto;
    /* display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center; */
}

p {
    font-size: 3vw;
    margin: 0;
}

@media screen and (max-width: 1000px){
    p {
        font-size: 5vw;
    }
}

button {
    margin-top: 2em;
    border-radius: 50%;
    border-color: black;
    background-color: none;
    width: 3em;
    height: 3em;
    font-family: 'Indie Flower', cursive;
    font-size: 2em;
    margin-top: 10px;
}

/* dropdown menu stuff */

.dropbutton {
    background-color: blueviolet;
    color: black;
    padding: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: pink;
    min-width: 100px;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: yellow;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbutton {
    background-color: red;;
}

/* images */
.gifs {
    width: 50%;
    height: auto;
}

#bowl-static {
    max-width: 30%;
}

#bowl-static:hover {
    max-width: 35%;
    cursor: grab;
}

/* divs */
#text-block {
    margin: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
}

#time-block {
    letter-spacing: .2em;
}

#images-button {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
}

