* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

@font-face {
  font-family: 'Apple Garamond';
  src: url('fonts/AppleGaramond.ttf') format('truetype');
}

  .bg {
  background-image: url("home/bg.png"); /* no need to escape space */
  background-attachment: fixed; /* key for parallax effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 50%;
  z-index: -1; /* push behind everything */
}

  body {
font-family: 'Apple Garamond' , serif;
background-color: #0052ff;
color: black;
text-align: center;
display: flex;
flex-direction: column;
}


nav {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  nav a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 8px 12px;
    transition: 0.3s;
  }

  nav a:hover {
    text-decoration: underline;
  }

  .logo-left, .logo-right {
    position: absolute;
    top: 0;
z-index: 9999; 
  }

  .logo-left img {
      width: 210px;
      height: auto;  
  }

  .logo-right {
    right: 50px;
    top: 32px;
  }

  .logo-right img {
    width: 80px;
    height: auto;
  }

  .oval {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 50% / 50%; 
    z-index: -1; 
  }

  .title {
    margin-top: 400px;
    font-size: 35px;
    justify-content: center;
      }

              .footer {
    background-color: white;
    padding: 10px 0;
    font-size: 14px;
    color: blue;
    width: 100%;
    position: absolute;
    bottom: 0px;
  }

  @media (max-width: 768px) {

nav {
gap: 20px;
}

nav a {
font-size: 20px;
margin-top: 100px;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background-image: url("home/bg.png");
  background-repeat: repeat-y;
  background-size: 100% 1000px;
  z-index: -1;
}

.logo-left{
    width: 100px;
    top: -13px;
    left: -10px;

  }

.logo-right img {
width: 60px;
}
  

.title {
    margin-top: 220px;
    justify-content: center;
      
      }


    .oval {
      width: 900px;
      height: 400px;
      top: 120px;
      margin-top: 190px;
      transform: translateX(-50%) rotate(-20deg);
z-index: -1;
    }

}
