/* Global styles */
*,
*::before,
*::after {
  margin: 2px;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: ui-sans-serif, -apple-system, system-ui, Segoe UI, Helvetica, Arial, sans-serif;
  color: #2c3e50;
  background-color: #ffffff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: auto;
}

/* Header */
header {
  color: #000000;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
}

.image {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

footer {
  color: #000000;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

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


@media (max-width: 768px) {
  body {
    max-width: none;
    margin: 0 2px;
    width: inherit;
    overflow-x: hidden;
  }
  header {
    padding: 0;
  }

  header h1 {
    font-size: 2.2rem;
  }

  header p {
    font-size: 1.5rem;
  }

  .break {
    display: inline;
    white-space: pre;
    content: "\A";
  }
}
