/* General Styles */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato' , sans-serif;
}
body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  max-width: 100vw;
  text-align: center;
  padding: 1rem;
  background: url(img/gallery-1.jpg) no-repeat center/cover;
}
.container{
  width: 550px;
  height: 450px;
}
.header{
  font-size: 1.2rem;
  border: solid 2px #fff;
  color: #fff;
  background-color: #262626;
  padding: 5px;
  width: 80%;
  margin: 20px auto;
  border-radius: 5px;
}
.main-content{
  width: 100%;
  height: 300px;
  background-color: #fff;
  border-radius: 15px;
  padding: 50px 40px;
  box-shadow: 0 0 10px;
}
.main-content .text-area{
  font-size: 1.5rem;
  line-height: 1.5;
}
.main-content .person{
  font-size: 1.6rem;
  color: red;
  text-transform: uppercase;
  margin-top: 20px;
}
.button-area button{
  background-color: #262626;
  color: #fff;
  font-size: 1.3rem;
  padding: 10px 15px;
  margin-top: 20px;
  border-radius: 5px;
}
.button-area button:active{
  background-color: lightblue;
}
@media screen and (max-width:500px) {
  .main-content .text-area{
  font-size: 1.2rem;
  line-height: 1;
}
.main-content .person{
  font-size: 1.3rem;
}
.button-area button{
  margin-top: 10px;
}
}