.video-container {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.video {
  margin: 10px;
  position: relative;

}



.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px;
}

.header-text {
  text-align: center;
  font-size: 150%;
  margin: 10px;
}

.header-strap {
  text-align: center;
}

.filter-button {
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin: 0 10px;
  cursor: pointer;
  font-family: 'Quicksand',
    sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}

.filter-button:hover {
  background-color: #EC3B82;
  color: white;
}


.active {
  background-color: rgb(255, 56, 123);
  color: white;
}

H1 {
  font-family: 'Quicksand',
    sans-serif;
  font-weight: 500;
  margin: 10px;
}

H2 {
  font-family: 'Quicksand',
    sans-serif;
  font-weight: 400;
  margin-top: 10px;
}

H3 {
  font-family: 'Quicksand',
    sans-serif;
  font-weight: 400;
}

.footer {
  height: 80px;
  background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), white);
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}

body {
  margin: none;
}

.spacer {
  height: 100px;
  width: 100%;
  background-color: white;
}

a {
  text-decoration: none;
  color: rgb(255, 56, 123)
}