@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
body{
  background-color: #E5E5E5;
  color: #4F4F4F;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

h1{
  color: #F6445E;  
}

header img{
  max-width: 150px;
}

.container{
  background-color: white;
}

.content{
  max-width: 700px;  
}

section a{  
  background-color: #F6445E;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  height: 47px;
  margin-top: 25px;
  width: 180px;
  transition: all 0.3s;  
}


section figure{
  max-width: 600px;
}

section a:active{
  transform: scale(0.90);
}

@media screen and (max-width: 1023px){
  .container{
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (min-width: 1024px){
  header img {
    max-width: 200px;
  }
  section a {    
    border-radius: 16px;    
    font-size: 18px;
    height: 57px;    
    width: 220px;    
  }
  section a:hover {
    width: 200px;
  }
}

