.content {
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
}

h1 {
  text-align: center;
  font-size: 3em;
  font-weight: bold;
}

hr {
  width: 100%;
  max-width: 800px;
  height: 1px;
  border: none;
  background-color: #ccc;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1em;
  line-height: 2em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.contact a {
  color: black;
}

.contact a:hover {
  text-decoration: underline;
}

iframe {
  max-width: 600px;
  width: 100%;
  max-height: 450px;
  height: auto;
  aspect-ratio: 4 / 3;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 2em;
  }

  .contact {
    font-size: 0.9em;
  }

  .contact a{
    text-decoration: underline;
  }
}

@media (max-width: 813px) {
  .content {
    height: 100%;
  }
}
