body #navbar ul a:nth-child(2) {
    background-color: aqua;
}

body #header #phrase span:nth-child(1) {
    color: rgb(2, 111, 161);
}

body #content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body #content #options {
    display: flex;
    justify-content: center;
    padding: 30px;
    height: 50px;
}

body #content #options button {
    margin: 20px;
    width: 200px;
    height: 50px;
    font-size: 20px;
    border: 2px solid black;
    background-color: tan;
    border-radius: 10px;
    transition-duration: 50ms;
    cursor: pointer;
}

body #content #options button:hover {
    transform: scale(110%);
}

.clicked {
    transform: scale(110%);
}

body #content #refreshments {
    width: 70%;
    height: 40%;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto;
}

body #content #refreshments div {
    grid-area: 1/1/2/2;
    display: none;
    justify-content: center;
    align-items: center;
}

body #content #refreshments div img {
    width: 90%;
}

body #content #refreshments #opt1 {
    display: flex;
}

@keyframes wheelspin {
    from {transform: rotate(0deg);}
    to {from {transform: rotate(1800deg);}}
}

body #content #refreshments #opt5 {
    width: 15%;
    margin-top: none;
    margin-left: auto;
    margin-right: auto;
    transition-duration: 100ms;
}

body #content #refreshments #opt5:hover {
    transform: scale(110%);
}

.spin {
    transition-duration: 5s;
    transition-timing-function: ease-out;
    transform: rotate(1800deg);
}

body #content span {
    margin: 20px;
    width: 200px;
    height: 50px;
    font-size: 20px;
    border: 2px solid black;
    background-color: tan;
    border-radius: 10px;
    transition-duration: 100ms;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

body #content img {
    width: 80px;
}

body #content span:hover {
    transform: scale(110%);
}