* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #2a2a2a;
}

.videos {
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

div.header {
  color: white;
  margin: 24px auto;
  max-width: 1200px;
  border: 2px solid royalblue;
  border-radius: 10px;
  padding: 18px;
  width: 80vw;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 4px 4px 10px black;
}

section {
  background-color: white;
  margin: 24px auto;
  padding: 18px;
  width: 80vw;
  max-width: 1400px;
  border: 2px solid royalblue;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 4px 4px 10px black;
}

section > h2 {
  color: #2a2a2a;
  font-family: "Averia Libre", system-ui;
  font-weight: 400;
  font-style: normal;
  border-top: 2px solid #2a2a2a;
  border-bottom: 4px solid royalblue;
  border-radius: 10px;
  padding: 4px 20px;
}
section > p {
  color: royalblue;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #2a2a2a;
}

iframe {
  height: 70vw;
  width: 70vw;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 4px solid royalblue;
  box-shadow: 10px 10px 10px #2a2a2a;
  transition: 0.2s;
}

@media (min-width: 450px) {
  iframe {
    height: 300px;
    width: 300px;
  }
}

iframe:hover {
  border-color: gold;
  border-radius: 40px;
}
