/*
#050C9C
#3572EF
#3ABEF9
#A7E6FF
*/

@font-face {
    font-family: "Nunito";
    src: url("Nunito.ttf");
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes swim {
    0% {
        left: -20%;
    }
    100% {
        left: 120%;
    }
}

body {
    background-color: #3ABEF9;
    min-height: 100vh;
    font-family: "Nunito";
    padding: 0;
    margin: 0;
}

.dark-wave {
    background-image: url("img/wave.png");
    background-size: contain;
    height: 2rem;
    animation: wave 20s linear infinite;
    position: relative;
    top: 2rem;
}

.light-wave {
    background-image: url("img/wave-light.png");
    background-size: contain;
    height: 2rem;
    animation: wave 15s linear infinite;
}

#sea{
    background-color: #050C9C;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-height: 100vh;
    position: relative;
    width: 100vw;
    overflow: hidden;
}

h1 {
    margin: 1rem;
}

#unibubble{
    padding-bottom: 3rem;
}

#gamebubble{
    padding-bottom: 25rem;
}

#otherbubble{
    padding-bottom: -3rem;
}


.menu-bubble{
    position: relative;
    display: inline-block;
    width: fit-content;
    height: fit-content;
}

.bubble{
    background-image: url("img/bubble.png");
    background-size: contain;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
}

a.bubble {
    text-decoration: none;
    color: black;
}

.menu-center{
    position: relative;
    z-index: 1;
}

.menu-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s, opacity 0.5s;
    opacity: 0;
}

.menu-bubble:hover>.menu-item, .toggled{
    opacity: 0.6;
}

.menu-item:hover{
    opacity: 1 !important;
}