* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#body-container {
    width: 100vw;
    height: 100vh;
    background-color: #ecf0f1;  
}

#navbar {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right,rgb(3, 184, 3), green);
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900; 
    padding: 0 20px;
    box-sizing: border-box;
}

.menuGalaxy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px; /* Space between items */
}

.menuGalaxy > a {
    color: white;
    text-decoration: none;
    font-weight: 900;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    #navbar {
        flex-direction: column; /* Stack elements vertically */
        height: auto; /* Let the height adjust to content */
    }
    
    .menuGalaxy {
        width: 100%; /* Full width for menu items */
        justify-content: space-around; /* Space out the menu items evenly */
        padding: 10px 0;
    }
    
    .menuGalaxy > a {
        font-size: 14px; /* Adjust font size for smaller screens */
        padding: 5px 0;
    }

    #navbar h1 {
        font-size: 24px; /* Reduce font size for smaller screens */
        margin-bottom: 10px;
    }
}


/* l;ogi------------------- */

#login-container {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

#login-container p {
    font-size: 16px;
}
#login-container h1 {
    text-align: center;
    font-size: 25px;
    
}
#login-box {
    display: grid;
    justify-content: center;
    gap: 10px;
    
    
    flex-direction: column;
}
input {
    width: 60vw;
    padding: 2%;
    border-radius: 10px;
}
#submit {
    border: none;
    background-color: rgb(12, 223, 12);
}
#submit:hover {
    background-color: rgb(3, 177, 3);
}

#other-login {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#other-login .image-login-option { 
    margin-top: 5vw;
    width: 40px;
    height: 40px;
}

