body {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    margin: 0;
    background-image: url("../images/ocean-background-darker-blurred.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

body::-webkit-scrollbar {
    width: 0;
}

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

.column {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
}

.pos-abs {
    position: absolute;
}

.top {
    top: 0;
    padding: 8px;
}

.bottom {
    bottom: 0;
    padding: 8px;
}

.space-between {
    justify-content: space-between;
}

.width-100 {
    width: 100%;
}

.width-20 {
    width: 20%;
} 

.min-width-60 {
    min-width: 60%;
}

.height-100 {
    height: 100%;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.gap-32 {
    gap: 32px;
}

.pixel-words {
    font-family: 'Press Start 2P', cursive;
    text-align: center;
    font-size: xx-large;
    color: white;
    text-shadow: 2px 2px black;
}

.info-text {
    font-size: medium;
    max-width: 700px;
    line-height: 20px;
}

.space-evenly {
    display: flex;
    justify-content: space-evenly;
}

.space-between {
    display: flex;
    justify-content: space-between;
}

.justify-start {
    display: flex;
    justify-content: start;
}

.justify-end {
    display: flex;
    justify-content: end;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.align-center {
    display: flex;
    align-items: center;
}

.d-none {
    display: none;
}

.clickable {
    text-decoration: none;
    cursor: pointer;
}

.clickable:hover {
    text-decoration: underline;
}

.text-input {
    width: 100px;
    height: 30px;
    font-size: large;
}

.button {
    width: 175px;
    height: 40px;
    font-size: small;
}

.input {
    border-style: solid;
    border-radius: 16px;
    background-color: #469420;
    font-family: 'PRESS START 2P';
    padding: 4px;
    color: white;
    text-align: center;
    border: 2px solid #28600C;
}

.home-link {
    position: absolute;
    top: 16px;
    left: 16px;
    text-decoration: underline;
    font-size: medium;
}

.link {
    color: white;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

a:visited {
    color: white;
}

audio {
    display: none;
}

.right-corner {
    top: 0;
    right: 0;
    padding: 16px;
}

.vol-btns {
    color: white;
    font-size: 24px;
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.scrollable {
    overflow-x: hidden;
    overflow-y: auto;
    /* need to also explicitly set the height (i.e. height: 70vh;) */
}

.scrollable::-webkit-scrollbar {
    width: 12px;
}

.scrollable::-webkit-scrollbar-track {
    background: #469420;           /* color of the tracking area */
}

.scrollable::-webkit-scrollbar-thumb {
    background-color: #28600C;     /* color of the scroll thumb */
    border-radius: 24px;             /* roundness of the scroll thumb */
    border: 3px solid #469420;     /* creates padding around scroll thumb */
}

.blurred {
    filter: blur(1px)
}

.tooltip {
    position: relative;
}

.tooltiptext {
    font-family: 'Courier New', Courier, monospace;
    font-size: small;
    text-shadow: none;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 70%;
    left: 50%;
    margin-left: -60px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}