:root {
    --beer-liquid-height: -100%;
}

* {
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    width: 100%;
    height: 100dvh;

    overflow: hidden;
}

.text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    text-align: center;
    
    z-index: 3;
    
    opacity: 0;
    animation: fadeIn 1s ease-in 3000ms forwards;
}

h1 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 4rem;

    color: #f5f5f5;
    
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: lighter;
    font-size: 1rem;

    color: #f5f5f5;
}

div.beer-liquid {
    position: absolute;
    bottom: 0;

    width: 100%;
    height: var(--beer-liquid-height);

    background: linear-gradient(180deg, #FEBF04 0%, #FEDA04 100%);
}

div.beer-bubbles-container {
    position: absolute;
    bottom: var(--beer-liquid-height);

    width: 100%;
    height: 20%;

    /* background-color: #FFF8D4; */
    overflow: visible;
}

div.beer-bubble {
    position: absolute;
    transform: translateX(-50%);

    width: 20vh;
    height: 20vh;

    border-radius: 100%;
    background-color: #FFF8D4;

    z-index: 2;
}

