@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&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    background-image: url("./img/hero-bg-2.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

main {
    height: 100vh;
    width: 100%;
    background: linear-gradient(180deg, rgba(5, 19, 94, 0.41) 0%, #05135E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 16px;
}

.container {
    text-align: center;
}

h1 {
    font-size: 96px;
    font-weight: 600;
    color: white;
    margin-top: 16px;
    margin-bottom: 16px;
}

p {
    font-size: 24px;
    color: #DADADA;
    margin-bottom: 24px;
}

span {
    color: #FFB309;
}

.container-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

/* === TABLET === */
@media (max-width: 991px) {
    h1 {
        font-size: 64px;
    }

    p {
        font-size: 20px;
    }

    .container-links {
        gap: 32px;
        flex-wrap: wrap;

    }
}

/* === MOBILE === */
@media (max-width: 575px) {
    h1 {
        font-size: 40px;
    }

    p {
        font-size: 16px;
    }

    .container-links {
        flex-direction: row;
        gap: 32px;
    }

    body {
        background-position: top center;
        background-size: cover;
        min-height: 100vh;
        overflow-y: hidden;
    }

    main {
        padding: 0 12px;
        min-height: 100vh;
        overflow-y: hidden;

    }

    br {
        display: none;
    }

    .logo {
        width: 40%;
    }
}