/* body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: black
} */
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');


body {
    background-color: black;
}
#header {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-top: 100px;
   
    
}

h1 {
    text-align: center;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    color: white;
}

#image {
    max-width: 100px;
    height: 100px;
    margin-right: 10px;
}


#hero-name {
    font-family: 'Fredericka the Great', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
}

.navbar {
    display: flex;
    align-items: stretch;
    background: linear-gradient(to bottom, #b0d0ff, #007bff);
    border-radius: 20px;
    padding: 10px 20px;
    margin: 20px auto;
    width: fit-content;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
  }

  .navbar button {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    ;
  }

  .navbar button:hover {
    text-decoration: none;
    color: black
  }

 
.divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
    align-self: stretch;
    
  }

  #content {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    text-align: center;
   
  }
  .content-area {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background-color: black;
}

.content-area img {
    max-width: 300px; /* Set a maximum width for the images */
    height: auto; /* Maintain the aspect ratio */
    margin: 10px; /* Add some spacing around the images */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.content-item {
    max-width: 300px;
    text-align: center;
    background: black;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.content-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    
}

.content-item p {
    font-size: 16px;
    color: #333;
}

.solid-column {
    display: block; /* Ensures the <p> tag behaves like a block element */
    background-color: black; /* Light gray background for the column */
    color: white; /* Text color */
    padding: 20px; /* Add padding inside the column */
    /* Add a solid border around the column */
    border-radius: 8px; /* Optional: Add rounded corners */
    max-width: 600px; /* Optional: Limit the width of the column */
    margin: 20px auto; /* Center the column and add vertical spacing */
    text-align: justify; /* Optional: Justify the text for better readability */
}
  

/* .navbar {
    width: fit-content;
    margin: 40px auto;
    background: linear-gradient(to bottom, #a5c9f1, #0080ff);
    border-radius: 20px;
    padding: 10px 20px;
    overflow: hidden;
    align-items: stretch;
  }
  
  .nav-links {
    text-decoration: none;
    list-style: none;
    display: flex;
    margin: 20px;
    padding: 0;
    width: fit-content;
    
  }
  
  .nav-links a {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
  }

  .nav-links a:last-child {
    border-bottom: none; 
} */



button:focus {
    outline: none; /* Prevent purple outline on focus */
    box-shadow:rgba(0, 0, 255, 0.8); /* Remove any focus shadow */
} 

@media (max-width: 768px) {
    #hero-name {
        font-size: 36px; /* Adjust font size for smaller screens */
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-links li {
        padding: 10px 0;
    }

    button {
        font-size: 14px; /* Smaller font size for buttons */
    }
}

@media (max-width: 480px) {
    #hero-name {
        font-size: 28px; /* Further reduce font size for very small screens */
    }

    .nav-links li {
        padding: 8px 0;
    }

    button {
        font-size: 12px;
        padding: 10px 15px;
    }
}