@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&display=swap');
body{
  font-family: "Lexend Deca", sans-serif;
  /* font-family: "Big Shoulders Display", sans-serif; */
  background-color: hsl(0, 0%, 95%);
  font-size: 15px;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container{
  max-width: 900px;
  margin: auto;
  padding: 0 2rem;
}
.box{
  display: grid;
  grid-template-columns:repeat(3,1fr);
  justify-content: center;
  align-items: center;
 min-height: 100vh;

}
.box1{
  background-color: hsl(31, 77%, 52%);
  padding: 45px;
  border-radius: 10px 0 0 10px;
}
.box2{
  background-color: hsl(184, 100%, 22%);
  padding: 45px;
}
.box3{
  background-color: hsl(179, 100%, 13%);
  padding: 45px;
  border-radius: 0 10px 10px 0;
}
.container .box h2{
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 30px;
margin: 30px 0;
  color: hsl(0, 0%, 95%);
}
.container .box p{
  color: hsla(0, 0%, 100%, 0.75);
  margin-bottom: 6rem;
 line-height: 1.6;

}
a{
  background-color:  hsl(0, 0%, 95%);
  padding: 12px 25px;
  border-radius: 20px;
  text-decoration: none;
}
.box a:hover{
  color:  hsl(0, 0%, 95%);
  background-color:transparent ;
}
.box1 a{
  color: hsl(31, 77%, 52%);
}
.box2 a{
  color: hsl(184, 100%, 22%);
}
.box3 a{
  color: hsl(179, 100%, 13%);
}

@media (max-width:800px)
{
  .container{
    padding: 5rem 2rem;
  }
  .box{
    grid-template-columns: 1fr;
  }
  .box1{
    border-radius:10px 10px 0 0 ;
  }
  .box3{
    border-radius:0 0 10px 10px ;
  }
}