:root {
    --bg-col: #474e9fff;
    --theme: #868fee;
    --text: #ffffff;
    --text-2: #0e0f1f;
}

body {
    overflow: hidden;
    margin: 0;
    background-image: url('/assets/bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
}

.infos h1 {
    transform: rotate(-8deg);
    letter-spacing: 2px;
    color: var(--theme);
    font-family: "Fuzzy Bubbles", sans-serif;
    font-weight: 900;
    font-size: 15vh;
    font-style: normal;
    text-shadow: 1px 5px 10px var(--text);
    margin-bottom: 0px;
}

.infos h1#sub {
    transform: rotate(-8deg);
    letter-spacing: 2px;
    color: var(--theme);
    font-family: "Fuzzy Bubbles", sans-serif;
    font-weight: 900;
    font-size: 13px;
    font-style: normal;
    text-shadow: 1px 0 9px var(--text);
    margin-top: -20px;
    margin-bottom: 20px;
}

.infos p, .infos small {
    color: var(--text);
    font-family: "Fuzzy Bubbles", sans-serif;
    font-weight: 900;
    font-size: 12px;
    font-style: normal;
    text-shadow: 1px 5px 10px var(--text);
    margin-top: 20px;
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.logo {
    max-width: 256px;
    margin-top: 90px;
    animation: jump 1s ease-in-out infinite;
    transform: scaleX(-1);
}

.logo2 {
    max-width: 256px;
    margin-top: 90px;
    animation: jump 1s ease-in-out infinite;
    animation-delay: 0.7s;
}


.links a {
    text-decoration: none;
}

.links a:hover {
    opacity: 0.5;
}

.links a img {
    width: 50px;
    background-color: var(--theme);
    display: block;
}

.links {
    margin-top: 30px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--theme);
    gap: 50px;
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 
        1px 0 30px var(--text),
       -1px 0 5px var(--text),
        0 1px 5px var(--text),
        0 -1px 5px var(--text);
}