@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap');

* {
  margin: 0 0;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5vw;
  line-height: 1.4;
  text-align: left;
  background-color: #FAF9F6;
  color: #0e0e0e;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.home-link {
  position: fixed;
  top: 1vw;
  left: 1vw;
}

.content {
  max-width: 64vw;
  padding: 2vw 5vw;
  margin: 0 auto;
}

.content p, ul, ol, h1, h2, h3 {
  max-width: 48vw;
  margin: 1em auto;
}

h1, h2, h3 {
  font-size: 1.5vw;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 2vw;
  margin-bottom: -0.5em;
}

a {
  color: #0e0e0e;
}

a:hover {
  font-style: italic;
}

img {
  max-width: 100%;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.video-container {
  width: 100%;
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
  position: relative;
  height: 0;
  border-radius: 16px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

@media (max-width: 600px) {
  body, h1, h2, h3 {
    font-size: 5vw;
  }

  .content {
    max-width: 90vw;
    padding: 5vw 8vw; 
    margin-top: 8vw;
  }

  .content p, ul, h1, h2, h3 {
    max-width: none;
  }

  .home-link {
    top: 3vw;
    left: 8vw;
  }
}
