/* Regular 400 */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium 500 */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Bold 700 */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #0c1754;
    min-height: 100vh;
}

.container {
    height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    cursor: pointer;
    max-width: 150px;
}

strong {
    font-weight: 500;
}

.main-div {
    transform: translateY(-100px);
    gap: 20px;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 40%;
    flex-direction: column;
}

h1 {
    font-size: 2.45rem;
}

.description {
    text-align: center;
    line-height: 1.5;
}

footer {
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    color: gray;
    padding: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.links a {
    color: gray;
    text-decoration: underline;
    margin: 0 10px;
}

.links a:hover {
    text-decoration: underline;
}

.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 600;
}


@media (min-width: 1468px) {
    .main-div {
        width: 40%;
    }
}

@media (max-width: 1468px) {
    .main-div {
        width: 60%;
    }
}

@media (max-width: 1260px) {
    .main-div {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .main-div {
        width: 80%;
        gap:10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    footer {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 522px) {
    .main-div {
        width: 100%;
    }

}
