html{
  box-sizing: border-box;
  font-size: 100%;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

*, *::before, *::after{
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.main{
  padding: 2rem 15rem;
  position: relative;
}

button{
  background-color: #028855;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease-in-out; 
  cursor: pointer;

  &:hover{
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  & > a{
    color: white;
    text-decoration: none;
  }
}

.title{
  margin: 2rem auto;
  text-align: center;
  

  & > h1{
    margin: 1rem 0;
  }

  & > p{
    margin: 1rem 0;
    margin-bottom: 3rem;
  }
}

.content{

  & > div{
    margin-bottom: 3rem;
  }
}

@media only screen and (max-width: 1100px){
  .main{
    padding: 2rem 5rem;
  }
}

@media only screen and (max-width: 480px){
  .main{
    padding: 2rem;
  }
}