.gradient-background {
  background: linear-gradient(300deg, #BB3E00, #F7AD45, #657C6A);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #000;
}


.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

.profile-img {
  height: 100px;
  border-radius: 50%;
}

#savethedate {
  display: flex;
  height: 100vh;
  align-content: center;
  justify-content:center;
  width: 100vw;
  
}

#videos {
  margin-top: 20px;
}

#std {
  display: flex;
  height: 600px;
}

#outtakes {
  display: flex;
  height: 600px;
}

#howitstarted {
  justify-content: space-evenly;
  flex-direction: row;
}

body {
  background-color: #f4e7e1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#header {
  background-color: #d5451b;
  justify-content: space-evenly;
  width: 100%;
}

#caption {
  text-align: center;
}

#picture {
  border-radius: 30px;
}

#pictures {
  border-radius: 30px;
  max-height: 500px;
  margin-bottom: 5px;
}

#welcome {
  justify-self: center;
}



