body {
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background2.webp') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

.navbar {
    background-color: #333333; 
}

.navbar-nav.ml-auto {
    display: flex;
    align-items: center;
    list-style: none; /* Remove default list styling */
    padding-left: 0; /* Remove default padding */
}

.navbar-brand {
    display: flex;
    align-items: center;
    overflow: hidden; /* Ensure content does not overflow */
}

.navbar-brand img {
    max-height: 45px;
    max-width: 100%; /* Ensure image does not overflow its container */
    height: auto;
}

.nav-item a[href="/me.html"] {
    color: #007bff; /* Hyperlink blue color */
}

.signed-in {
    display: flex; /* Make the navbar container a flexbox */
    justify-content: space-between; /* Align items horizontally with space between */
  }
  

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 30px; /* Adjust height for smaller screens */
    }

    .main-content h1 {
        font-size: 2em;
    }

    .main-content p {
        font-size: 1.2em;
    }
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    flex: 1;
    padding-top: 15px; /* Add padding to avoid content overlap with navbar */
}

.main-content .container {
    max-width: 800px;
}

.main-content h1 {
    font-size: 3em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
    font-size: 1.2em;
}

footer {
    background-color: #333333;
    color: #ffffff;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding: 20px 0;
}
