@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

:root{
    --primary-color: rgb(175, 255, 222);
    --secondary-color: rgb(255, 230, 146);
    --accent-color: rgb(0, 225, 255);
    --primary-text: black;
    --accent-text: rgb(0, 68, 169);
    --accent-secondary: rgb(0, 247, 255);
}

*{
    margin: 0;
    padding: 0;
}

html{
    font-family: 'Roboto Mono', 'Poppins', sans-serif;
    color: var(--primary-text);
}

body{
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--primary-color);
}

a{
    background-color: rgb(0, 255, 242);
    padding: 20px 40px;
    border-radius: 20px;
    border: 2px solid black;
    transition: background-color 320ms ease-in;
    animation: fade-in 620ms 1s ease-in-out forwards;
    opacity: 0;
}

a:hover{
    background-color: rgb(0, 255, 21);
}

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

@keyframes fade-in{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 100%;
    }
}

.splash-section{
    background-image: linear-gradient(to right, var(--accent-color), var(--accent-secondary));
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    animation: circle-open 1s forwards;
    flex-direction: column;
    padding-bottom: 100px;
    gap: 50px;
}

.splash-content{
    width: 100%;
    height: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    color: var(--accent-text);
    justify-content: space-around;
    align-items: center;
    background-image: radial-gradient(var(--secondary-color), transparent 60%);
    opacity: 0;
    animation: slide-up 620ms 0.2s forwards;
}

.body-content{
    display: flex;
    justify-content: center;
    max-width: 1200px;
    inset: 0;
    margin: 0 auto;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.flex-4{
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
}

.flex-4 .content-box{
    width: 500px;
    height: 200px;
    flex-wrap: wrap;
    gap: 10px;
    background-image: linear-gradient(to right, var(--accent-color), var(--accent-secondary));
    display: flex;
    border-radius: 20px;
}

@keyframes slide-up{
    0%{
        margin-top: 100px;
        opacity: 0;
    }
    100%{
        margin-top: 0px;
        opacity: 100%;
    }
}

@keyframes circle-open{
    0%{
        height: 0;
    }
    100%{
        height: 600px;
    }
}

h1{
    font-size: 32pt;
    font-weight: 900;
}