* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: rgb(214, 207, 207);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background-color: rgb(37, 34, 34);
    animation: head 2s linear infinite alternate;
}

header img.header-logo {
    max-width: 80px;
    height: auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin-right: 20px;
    border-radius: 50%;
}

h1 {
    padding: 20px;
    color: white;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
}
.hero {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}
.img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: earth 2s linear infinite alternate;
    z-index: 0;
}
.bot {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

p {
    color: rgb(253, 249, 249);
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

a.btn {
    font-size: 1.5em;
    color: rgb(253, 255, 253);
    background-color: rgb(9, 88, 158);
    text-decoration: none;
    font-weight: 400;
    padding: 15px 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

a.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
    background-color: rgb(12, 112, 202);
}

a.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    p {
        font-size: 2.5em;
    }
    a.btn {
        font-size: 1.3em;
        padding: 12px 30px;
    }
    h1 {
        font-size: 1.8em;
    }

    header img.header-logo {
        max-width: 60px;
    }
}
@media (max-width: 768px) {
    p {
        font-size: 2em;
        margin-bottom: 30px;
    }
    a.btn {
        font-size: 1.1em;
        padding: 10px 25px;
    }
    .buttons {
        flex-direction: column;
        gap: 15px;
    }
    h1 {
        font-size: 1.5em;
        padding: 15px;
    }

    header img.header-logo {
        max-width: 50px;
    }
}
@media (max-width: 480px) {
    p {
        font-size: 2em;
    }
    .buttons {
        margin-bottom: 100px;
    }
    a.btn {
        font-size: 0.9em;
        padding: 8px 20px;
    }
    .buttons {
        gap: 10px;
    }
    h1 {
        font-size: 1.2em;
        padding: 10px;
    }
    header img.header-logo {
        max-width: 40px;
    }
}