@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;
}

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%;
    }

}
