body {
    background-image: url('../img/backgroundr.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

nav a:hover {
    color:darkcyan;
    border-radius: 10px;
}

/* Basic styling for the navbar */
nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    flex: 1;
    list-style: none;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;

}

.button-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto; /* Pushes the buttons to the far right */
    text-align: center;
}

/* Style for Sign In button */
.sign-in-button {
    background-color: transparent;
    color: white;
    border-radius: 10px;
    border: 1px solid #418ADE;
    padding: 8px 16px;
    font-weight: bold;
    transition: 0.2s ease;
}

/* Style for Librarian button */
.librarian-button {
    background-color: transparent;
    color: white;
    border: 1px solid #418ADE;
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: bold;
    transition: 0.2s ease;
}

/* Optional hover effects */
.sign-in-button:hover {
    background-color: #f0f0f0;
    
}

.librarian-button:hover {
    background-color: #f0f0f0;
}


/* Style individual navbar links */
nav a {
    text-decoration: none;
    color: #fff;
    padding: 10px;
   
    font-family: Arial, Helvetica, sans-serif;
}

/* Adjust the alignment for smaller screens */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links {
        display: flex;
        padding: 6.53px 13.061px;
        align-items: center;
        gap: 10.53px;
        margin-left: auto;
        margin-left: 35px;
    }
    .navbar-links:hover{
        background-color: #0056b3;

    }

    nav a {
        width: 100%;
        text-align: left;
        padding: 10px 0;
        font-weight: 400;
    }

}

/* Styling for the menu button */
.menu-btn {
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-right: 10px;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh; /* Full viewport height */
    text-align: center;
    padding: 20px;

    
}

.main-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: whitesmoke;
    font-family: 'PT Serif Caption';
}

.cta-button {
    background-color: #007bff;
    color: #FFF;
    border: none;
    padding: 4px 35px;
    font-size: 1.10em;
    border-radius: 10px;
    line-height: normal;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.social-links{
    margin-top: 10px;
  
}
.social-links a{
    margin: 0 10px;
     
}

.social-icons a {
    margin: 0 10px;
}