body {
    background: linear-gradient(60deg, rgba(84, 58, 183, 1) 0%, rgba(0, 172, 193, 1) 100%);
}

#waves-wrapper {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: -1;
}

.waves {
    position: relative;
    width: 100%;
    height: 20vh;
    margin-bottom: -7px;
    min-height: 150px;
    max-height: 200px;
    z-index: -1;
}


.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -8s;
    animation-duration: 28s;
}

.parallax>use:nth-child(2) {
    animation-delay: -12s;
    animation-duration: 40s;
}

.parallax>use:nth-child(3) {
    animation-delay: -16s;
    animation-duration: 52s;
}

.parallax>use:nth-child(4) {
    animation-delay: -20s;
    animation-duration: 80s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 768px) {
    .waves {
        height: 80px;
        min-height: 80px;
    }
}

.sun {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 60px;
    right: 60px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 223, 0, 0.8);
    background: yellow;
    display: none;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.moon {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50px;
    right: 85px;
    border-radius: 50%;
    box-shadow: 25px 10px 0 0 rgba(245, 243, 206, 0.8);
    display: none;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.night {
    background: linear-gradient(60deg, rgba(18, 32, 47, 1) 0%, rgba(44, 62, 80, 1) 100%);
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    filter: blur(1px);
    box-shadow: 0px 0px 10px 0px #FFF;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 96vh;
    background: none;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.box-container {
   display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 60%;
}

.box {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    font-size: 1.2em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.box img {
    width: 24px;
    height: 24px;
}

.box:hover {
    background: rgba(255, 255, 255, 0.4);
    /*transform: scale(1.05);*/
}

@media (max-width: 768px) {
    .box-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .box-container {
        width: 80%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}
