:root {
    --green: #67DF5F;
    --blue: #7C7CF5;
    --pink: #D97CF5;
}

@font-face {
    font-family: 'Poppins';
    font-style: NORMAL;
    font-weight: 900;
    font-display: swap;
    src: url(/font/Poppins-ExtraBold.ttf);
}

@font-face {
    font-family: 'Poppins';
    font-style: NORMAL;
    font-weight: 400;
    font-display: swap;
    src: url(/font/Poppins-Regular.ttf);
}

@font-face {
    font-family: 'Poppins';
    font-style: NORMAL;
    font-weight: 600;
    font-display: swap;
    src: url(/font/Poppins-SemiBold.ttf)
}

*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

body {
    background: #09080D;
    background-image: url("/img/rect.svg");
    background-repeat: repeat;
    background-position: 8px 24px;
    color: white;
}

h1{
    font-size: 150px;
    font-weight: 900;
    line-height: 130px;
}

section {
    max-width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#kicker {
    font-size: 20px;
    font-weight: 500;
}

#info {
    font-size: 22px;
    line-height: 27px;
    margin-top: 28px;
    margin-bottom: 15px;
}

#wrapper {
    display: flex;
    justify-content: space-between;
}

#authWrapper {
    display: flex;
    gap: 6px;
}

#discord {
    background: var(--blue);
}

#github {
    background: var(--green);
}

#socialWrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
}

.social {
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    background: white;
    border-radius: 20px;
}

.social img {
    width: 35px;
}

.auth {
    background: white;
    color: black;
    font-weight: 600;
    padding: 0 36px;
    border-radius: 100px;
    display: flex;
    align-items: center;
}

.marked {
    color: var(--pink);
}

a{
    text-decoration: none;
    color: var(--green);
}

a:hover{
    text-decoration: underline;
}

@media only screen and (max-width: 1780px) {
    h1 {
        font-size: 125px;
        line-height: 110px;
    }
    section {
        max-width: 40%;
    }
    #info {
    margin-top: 20px;
    }
}

@media only screen and (max-width: 1440px) {
    section {
        max-width: 70%;
    }
}

@media only screen and (max-width: 1024px) {
    section {
        max-width: 90%;
    }
}

@media only screen and (max-width: 768px) {
    section {
        max-width: 90%;
    }
    h1 {
        font-size: 85px;
        line-height: 75px;
    }
    #info {
        margin-top: 15px;
    }
    #wrapper {
        flex-direction: column;
        gap: 6px;
    }
    #authWrapper {
        height: 90px;
        min-width: 100%;
    }
    .social {
        width: 50%;
    }
    .auth {
        width: 50%;
        justify-content: center;
        border-radius: 20px;
    }
}

@media only screen and (max-width: 520px) {
    section {
        max-width: 95%;
    }
    h1 {
        font-size: 70px;
        line-height: 60px;
    }
}