
.header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  left: 0px;
  right: 0px;
  position: fixed;
  background-color: #c01f15;
  z-index: 1;
  top: 0px;
  height: 100px;
  padding: 10px 20px;
}

.logo-container img{
  height: 60px;
  border-radius: 30px;
}
.left-section{
  width: 800px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  
}
.right-section{
  margin-left: 50px;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
}

.button-contact{
  padding: 10px 20px;
  border: none;
  background-color: white;
}


.list-containers {
  display: inline-block;
  position: relative;
}

/* Main dropdown */
.aspect-containers {
  display: none;
  position: absolute;
  background-color: gray;
  top: 100%;
  left: 0px;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
 
}

.list-containers:hover .aspect-containers {
  display: block;
}

.sub-dropdown {
  position: relative;
}
.sub-menu a {
  text-align: center;
  
}

.sub-menu {
  display: none;
  position: absolute;
  top: 0px;
  left: 100%;
  min-width: 250px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.sub-menu div{
  padding-left: 20px;
}




.sub-dropdown:hover .sub-menu {
  display: flex;
  flex-direction: column;
}



/* Button & Link Styles */
.university-button {
  cursor: pointer;
  border: none;
  font-size: 28px;
  font-weight: 500;
  font-family: Merriweather; 
  background: none;
  color: white;
}

.aspect-containers a {
  font-size: 25px;
  padding: 20px 10px;
  color: #262626;
  text-decoration: none;
  display: block;
  width: 100%;
  background-color: #fbc8ad;
}

.aspect-containers a:hover {
  background-color: #fd935a;
}
.special-text{
  color: #ffd966;
}
.button-contact{
  font-family: Merriweather;
  border: none;
  font-size: 25px;
  background-color: #c01f15;
  color: #ffd966;
}
