@font-face {
  font-family: 'OronteusFinaeusW01';
  src: url('../fonts/OronteusFinaeusW01-Regular.woff2') format('woff2'),
      url('../fonts/OronteusFinaeusW01-Regular.woff') format('woff'),
      url('../fonts/OronteusFinaeusW01-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  height: 90vh;
  display: flex;
  flex-direction: column;
  background-image: url('../images/background.jpg');
  background-color: #000000; 
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'OronteusFinaeusW01';
  color: #f82335
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  margin-bottom: 3rem;
}

.nav-link {
  color: #ff0000;
  font-size: 1.5em;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.title {
  text-align: center;
  font-size: 3em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iframe-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 560px) {
  .iframe-container {
    width: 100%;
  }

  body {
    background-size: contain;
  }
}
