body {
    margin: 0;
    padding: 0;
    background-image: url("https://www.ejiltalk.org/wp-content/uploads/2021/03/pexels-photo-110854.jpeg");
    background-size: cover;
    font-family: cursive; 
    
  
}

.header {
    width: 100%;
    height: 100px;
    background-image: url("https://www.ejiltalk.org/wp-content/uploads/2021/03/pexels-photo-110854.jpeg");
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
}

.logo {
    padding: 5px;
    text-align: center;
}

.logo img {
    width: 110px;
    height: 70px;
}



@media screen and (max-width: 800px) {
    .header {
        height: 70px;
        font-size: 20px;
        width: 100vw;
    }

    .text_header {
        margin-left: 0%;
    }

    .darkmode {
        margin-left: 0%;
    }

}

.main_body {
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    gap: 5%;
}

.globe {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}

#earth {
    background-image: 350px;
    width: 300px;
    height: 300px;
    background: url(https://web.archive.org/web/20150807125159if_/http://www.noirextreme.com/digital/Earth-Color4096.jpg);
    border-radius: 50%;
    background-size: 610px;
    box-shadow: inset 0px 36px 80px 15px rgb(0, 0, 0), inset 0px 0px 20px 5px rgba(255, 255, 255, 0.3);
    animation-name: rotate;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 12s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

@keyframes rotate {
    from {
        background-position: 0px 0px;
    }

    to {
        background-position: 610px 0px;
    }
}

@-webkit-keyframes rotate {
    from {
        background-position: 0px 0px;
    }

    to {
        background-position: 610px 0px;
    }
}

.main_body_text h1 {
    max-width: 500px;
    font-size: 40px;
}

.main_body_text h3 {
    max-width: 500px;
}

.main_body_text_button button {
    border: 2px solid black;
    padding: 15px 25px;
    background-color: green;
    box-shadow: 4px 4px 1px 1px green;
    border-radius: 25px;
    font-size: 18px; 
    cursor: pointer;
    transition: all 0.2s ease; 
}


.main_body_text_button button:hover {
    background-color: rgb(115, 255, 0); 
    box-shadow: 6px 6px 3px 2px green; 
    transform: scale(1.1); 
    transition: all 0.2s ease;
}

.main_body_text_button button:active {
    border: 2px solid black;
    padding: 15px 25px; 
    background-color: green;
    box-shadow: 4px 4px green;
    transform: translateY(4px);
    border-radius: 25px; 
    font-size: 18px; 
}

background-color: green;
box-shadow: 4px 4px green;
transform: translateY(4px);
border-radius: 10px;
}