:root {
  --black: #190c19;
  --cream: #faf0ca
}

body {
  margin: 2vw;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5vh;
  border-bottom: 0.25vh solid var(--black);
  border-radius: 0.5vw;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  gap: 1vh;
}

main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

video {
  width: 100%;
}

section {
  display: flex;
  flex-direction: column;
  width: 29vw;
  padding: 1vw;
  margin-bottom: 1.4vw;
  background-color: var(--cream);
  border-radius: 0.5vw;
}

h1 {
  margin: 0;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}