/* styles.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1c1c1c;
    color: white;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #4a2956;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Adjusting the logo size */
.logo img {
    width: 100px; /* Increase the width of the logo */
    height: 93.07px; /* Maintain the aspect ratio */
    padding: 0px 0px;
}
/**/

nav {
    display: flex;
    justify-content: center; /* Center buttons */
    gap: 60px; /* Adjust spacing between buttons */
    flex-grow: 1;
}

.nav-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: transform 0.3s, background-color 0.3s;
    padding: 10px 15px;
    border-radius: 8px;
}

    .nav-button img {
        width: auto;
        height: auto;
        margin-right: 10px;
    }

    .nav-button:hover {
        transform: scale(1.1);
        background-color: #0c5345;
        color: white;
    }

    .nav-button:hover {
        transform: scale(1.1);
        background-color: #0c5345;
        color: white;
    }


.profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: gray;
}


/* Sign-In Button */
.sign-in {
    display: flex;
    align-items: center;
}

#sign-in-button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #4a2956;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    #sign-in-button:hover {
        background-color: #0c5345;
    }
