@font-face {
    font-family: "SF Pro";
    src: url(fonts/SF-Pro.dmg);
}


body {
    margin: 0;
    font-family: "SF Pro", sans-serif;
    background-color: rgb(255, 255, 255);
}

.main-nav {
    background-color: rgba(232, 232, 237, 0.7);;
    padding: 10px 0;
    border-bottom: 1px solid rgb(200, 200, 200);
    backdrop-filter: blur(10px) saturate(180%); 
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);

    position: relative;
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    backdrop-filter: blur(10px) saturate(180%);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  
  justify-content: center;
  gap: 24px;
}

.main-nav a {
    font-size: 17px;
    text-align: center;
    background-color: rgba(232, 232, 237, 0.7);
    color: rgb(29, 29, 31);
    display: block;
    text-decoration: none;
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    padding: 10px 20px;
    border: 1px solid rgba(210, 210, 215, 1);

}


.main-nav a:hover {
    background-color: rgba(223, 223, 227, 0.698);
    color: rgb(29, 29, 31);
}


.main-nav a.active {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}




.welcome-content {
  width: 100vw;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.welcome-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

h1 {
    font-size: 3em;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-top: 0;
}

h2 {
    font-size: 1.5em;
    color: rgb(255, 255, 255);
    margin-top: 0;
}

.text-overlay {
  position: absolute;
  bottom: 24px;        
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}


