/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #9EDAE2;
    color: #000;
    line-height: 1.5;
}

header, nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
}
  header img {
    width: 5%;   /* the image will take up 50% of its container's width */
        height: auto; /* maintains the aspect ratio */
      
      "rombalds-stride" {
    border: none;
    font-weight: normal;
}

}
.flex-container {
    display: flex;
    justify-content: center;  
    align-items: center;      
    height: 300px;           
}
nav ul li {
    list-style: none;
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: #2394b6;
    font-weight: bold;
}

.student-banner {
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 1px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

main section {
    margin: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f2f2f2;
}
/* Basic styling for the navbar */
.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
     background: none;
    border: none;
}

.navbar li {
    float: left;
}

.navbar li a, .dropbtn {
     font-family: "Arial", sans-serif;
    color: #2394b6;
    text-align: center;

     display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: #fff
        
}

.dropdown-content {
    line-height: 1.5;
    font-family: "Arial", sans-serif;
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: #fff;
    z-index: 1;
    min-width: 160px; /* Adjust width as needed */
}

.dropdown-content a {
    line-height: 1.5
    color: #2394b6;
    padding: 12px 16px;
    text-align: left;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    background-color: #f2f2f2;
}