main{
    padding-bottom: 5rem;
}

h1{
    font-size: 3rem;
    margin: 0;
}

p{
    font-size: 2rem;
    margin: 0;
}

label{
    font-size: 2.5rem;
}

.contactBox{
    max-width: 80%;
    margin: 5% auto;
    padding: 1rem;
}

.form{
    margin: 5% auto;
    text-align: center;
}

.contactBox label{
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: left;
}

.contactBox input{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-sizing: border-box;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contactBox textarea{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-sizing: border-box;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.button{
    width: max-content;
    font-size: 1.2rem;
    background-color: rgb(216, 23, 23);
    color: white;
    border: none;
    padding: 0.7rem 1.3rem;
    border-radius: 0.5rem;
}

/*tablet*/
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1.5rem;
  }

  label{
    font-size: 2rem;
  }
}

/*phone*/
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  p {
    font-size: 1.3rem;
  }

  label{
    font-size: 1.5rem;
  }
}