* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: rgb(100, 200, 255);
}

html {
  font-size: 16px; /* base for rem units */
}

h1 {
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

@media (max-width: 700px) {
  h1 {
    font-size: 2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
}

p {
  text-align: center;
  width: 30rem;
  height: auto;
  margin: 3rem auto;
  font-size: 1rem;
}

@media (max-width: 700px) {
  p {
    width: 90%;
    font-size: 1rem;
    margin: 1.5rem auto;
  }
}

form {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 3rem auto;
  padding: 2rem;
  width: 25rem;
  border: 0.25rem solid #000;
  background-color: azure;
  border-radius: 0.5rem;
}

@media (max-width: 700px) {
  form {
    width: 95%;
    padding: 1rem;
    margin: 1rem auto;
  }
}

input {
  padding: 0.75rem;
  margin-bottom: 1rem;
  color: #000;
  border-radius: 2rem;
  border: 0.25rem solid #000;
  text-align: center;
  width: 100%;
  background: rgb(100, 200, 255);
  box-sizing: border-box;
  font-size: 1rem;
}

button {
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: 0.25rem solid #000;
  cursor: pointer;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgb(100, 200, 255);
  font-size: 1rem;
  width: 10rem;
  max-width: 100%;
}

@media (max-width: 700px) {
  input {
    font-size: 1rem;
  }
  button {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}

.button {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 0.25rem solid #000;
  cursor: pointer;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgb(100, 200, 255);
  color: #000;
  text-decoration: none;
  width: 10rem;
  max-width: 100%;
  min-width: 5rem;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .button {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
  }
}

iframe {
  display: block;
  margin: 2rem auto;
  width: 100%;
  max-width: 37.5rem;
  border: none;
}

@media (max-width: 700px) {
  iframe {
    width: 95%;
  }
  video {
    width: 95%;
  }
}

video {
  display: block;
  margin: 2rem auto;
  width: 100%;
  max-width: 37.5rem;
  border: none;
}
.main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;      /* This allows wrapping to the next row */
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 75rem;
  width: 95%;
}

@media (max-width: 900px) {
  .main {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }
}

.video-col {
  flex: 1 1 18.75rem;
  max-width: 21.875rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.08);
  text-align: center;
  margin-bottom: 2rem;
}

.video-col h2 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem 0;
  color: #222;
  background: none;
}

.video-col p {
  font-size: 1rem;
  width: 100%;
  margin: 0.5rem 0 0 0;
  background: none;
}

.video-col video {
  width: 100%;
  height: 12.5rem;
  border-radius: 0.5rem;
  background: #000;
  margin-bottom: 1rem;
}

@media (max-width: 700px) {
  .video-col {
    max-width: 95vw;
    padding: 0.5rem;
  }
  .video-col video {
    height: 9rem;
  }
  .video-col h2 {
    font-size: 1.1rem;
  }
  .video-col p {
    font-size: 0.95rem;
  }
} 
.video-row-heading {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0 1rem 0;
}
.video-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .video-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
} 

}