@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", "Helvetica Neue", Helvetica, sans-serif;
}

.container-earth {
    width: 100vw;
    height: 100vh;
    background-color: #03020a;
    overflow: hidden;
    position: relative;
}


.video-earth {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-logo-login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 10;
    padding: 1.5rem 1.5rem;
    width: 100%;
}

.logo {
    width: 3rem;
}

.container-redirect-label {
    width: 100%;
    padding: 10px;
    position: absolute;
    bottom: 6%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wrapper-btn-indirect-website {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

}

.who-text-data {
    font-weight: 300;
    font-style: Light;
    font-size: 36px;
    text-align: center;
    color: #DDDDDD;

}

.class-btn-style {
    width: 9rem;
    padding: 0.70rem 0rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #9FEDF8;
    transition: background-color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

.image-fit {
    width: 100%;
    height: 100%;
}

@media(min-width:450px) and (max-width:700px) {
    .video-earth {
        object-fit: cover;
    }

}

@media(min-width:300px) and (max-width:450px) {
    .wrapper-btn-indirect-website {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        place-items: center;
    }

    .video-earth {
        object-fit: cover;
    }

    .container-redirect-label {
        bottom: 10%;
    }


}