:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #526160;
  background: #ffffff;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-width: 280px;
}

main {
  width: min(100% - 64px, 960px);
  min-height: 100svh;
  margin-inline: auto;
  padding-block: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.brand {
  margin: 0;
  line-height: 0;
  text-align: center;
}

.brand img {
  display: inline-block;
  width: 260px;
  max-width: 100%;
  height: auto;
}

.video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e0e5e4;
  border-radius: 8px;
  background: #f7f9f8;
}

.video p {
  margin: 0;
  padding: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 600px) {
  main {
    width: calc(100% - 32px);
    padding-block: 40px;
    gap: 28px;
  }

  .brand img {
    width: 210px;
  }

  .video p {
    font-size: 16px;
    padding: 16px;
  }
}
