@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
*{
  margin: 0;
  padding: 5px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.error-message{
  padding: 90px 0;
  background: #ffffff;
}
.pic{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  width: 2000px;
  border-radius: 15px;
}
.about{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.text{
  width: calc(80% - 50px);
  margin: 0 10px; 
}
.centered-title{
  text-align: center;
}
.text h3{
  margin-top: 15px;
  font-size: 2rem; 
  margin-bottom: 10px;
}
.text span{
  align-items: center;
}
.text p{
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.5;
}
.text a{
  color: #05c432;
  text-decoration: none;
  align-items: center;
}
.download {
  text-align: center;
  margin-top: 10px;
}
.btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: #05c432;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  margin: 25px 5px;
}
.btn:hover {
  background-color: #3fcf7f;
}
@media screen and (max-width: 768px) {
  .text {
    width: 100%; 
    margin: 20px 0;
  }
}