.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.header {
  text-align: center;
  margin: 20px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.embed {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.embed iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .embed iframe {
    width: 100%;
    height: 300px;
  }

  .logo img {
    max-width: 100%;
    height: auto;
  }
}