@font-face {
  font-family: 'MitraLogoFont';
  src: url('fonts/MDSystemNarrowTest-Semibold.otf') format('opentype');
}

@font-face {
  font-family: 'MitraTaglineFont';
  src: url('fonts/MDSystemTest-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'MitraNormalFont';
  src: url('fonts/MDSystemTest-Regular.otf') format('opentype');
}

body {
  background: #0240FF;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  text-align: center;
  font-size: 1rem;
}

#logo {
  display: block;
  margin: 0 auto;
  max-width: 40vw;
  height: auto;
}

#text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -35vh; 
}

h1 {
  font-family: 'MitraTaglineFont', 'Times New Roman', sans-serif;
  font-size: 3vw;
  margin: 1vh 2vw; 
}

h2 {
  font-family: 'MitraNormalFont', 'Times New Roman', sans-serif;
  font-size: 2vw;
  margin: 1vh 2vw; 
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 2vw;
  box-sizing: border-box;
}

#contact-link {
  font-family: 'MitraNormalFont', 'Times New Roman', sans-serif;
  color: #ffffff;
  font-size: 1.5vw;
  text-decoration: none;
  margin-bottom: 2vh;
}

#contact-link:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 4vw;
  }
  h2 {
    font-size: 3vw;
  }
  #contact-link {
    font-size: 2vw;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 5vw;
  }
  h2 {
    font-size: 4vw;
  }
  #contact-link {
    font-size: 3vw;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 6vw;
  }
  h2 {
    font-size: 5vw;
  }
  #contact-link {
    font-size: 4vw;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 7vw;
  }
  h2 {
    font-size: 6vw;
  }
  #contact-link {
    font-size: 5vw;
  }
}