/* General styles */
body {
    margin: 0;
    color: #82a5ca;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    background-color: #0e0f1f;
}

h1, h3 {
    margin: 0;
    padding: 10px 0;
}

/* Hero section */
#hero {
    background-image: url("images/giphy-space.webp");
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#main-logo {
    display:flex;
    width: 190px;
    margin-bottom: 20px;
}

#title {
    text-shadow: 0px 0px 8px black;
    font-size: 2.5rem;
}

/* Button styling */
.btn {
    padding: 12px 20px;
    background-color: white;
    border: none;
    font-family: 'Orbitron', sans-serif;
    color: #0e0f1f;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #82a5ca;
    color: #0e0f1f;
    transform: scale(1.1);
}

/* Underline effect */
.underline {
    border-bottom: 4px solid white;
}

/* Footer */
footer h3 {
    font-size: 1rem;
    color: #b0c4de;
}

/* Responsive design */
@media (max-width: 768px) {
    #title {
        font-size: 1.8rem;
    }
    
    .btn {
        font-size: 0.9rem;
    }

    #main-logo {
        width: 100px;
    }
}
