* {
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 95%);
  margin: 150px;
}

main {
  height: 100svh;
  min-width: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#flex-container1 {
  background-color: hsl(31, 77%, 52%);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: left;
  height: 80%;
  padding: 10%
}

#flex-container2 {
  background-color: hsl(184, 100%, 22%);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: left;
  height: 80%;
  padding: 10%
}

#flex-container3 {
  background-color: hsl(179, 100%, 13%);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: left;
  height: 80%;
  padding: 10%;
}

h2 {
  font-family: "Big Shoulders"
  font-optical-sizing: auto;
  font-weight: 700;
  color: hsl(0, 0%, 95%);
}

button {
  padding: 10px;
  background-color: hsl(0, 0%, 95%);
  max-width: 100px;
  border-radius: 20px;
}

#button1 {
  color: hsl(31, 77%, 52%);
}

#button2 {
  color: hsl(184, 100%, 22%);
}

#button3 {
  color: hsl(179, 100%, 13%);
}

p {
  color: hsla(0, 0%, 100%, 0.75);
  font-size: 15px;
  font-family: "Lexend Deca";
  font-weight: 400;
}

img {
    margin-right: 50px;
}