*{
    margin: 0;  
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
  }

:root{
    --cor-bg:#F5FEF9;
    --cor-word1:#268CFF;
    --cor-word2: #f20789;
    --cor-word3:#A8F2FE;
    --cor-word4:#F207891A;
    --cor-word5:#A8F2FE66;
}



body{
    background-color: var(--cor-bg);
    cursor: url('/src/image/cursor-default.png'), default;
}

button, a, button:hover, a:hover{
    cursor: url('/src/image/cursor-hover.png'), auto;
}

a{
    text-decoration: none;
}

nav{
  background-color: var(--cor-word1);
  display: flex;
  align-items: center;
}

nav a img {
  max-width:40%;
  height: inherit; 
}

#contact{
    background-color: var(--cor-bg);
}

.box-contact{
    background-color: var(--cor-word4);
    border-radius: 15px;
    
}

.box-contact h2{
    font-weight: bolder; 
    margin-top: 0.3rem;  
    color: var(--cor-word2);  
}

.box-contact h5{
    font-weight: bold; 
    color: var(--cor-word2);  
}

.box-contact-options{
    display: flex;
    justify-content: center;
}
.label-form, .label-info{
    margin-bottom: 2px;
    font-weight: bold; 
    color: var(--cor-word2);
}

.social-icons{
  padding-top: 5px;
  margin-right: 5px;
}

.info-contact{
  background-image: url('/src/image/contact-image.png');
    background-repeat: no-repeat; 
    background-size: 30%;
    background-position: right;
}

footer{
    background-color: var(--cor-word2);
    color: var(--cor-bg);     
    height: 10rem;
    margin-top: 1.5rem;
    padding-top: 2%;
    padding-left: 2%;
    padding-right: 2%;
    bottom: 0;
    right: 0;
    width: 100%;
}

.terms-content, .copyright {
    padding-top: 2%;
} 


@media screen and (min-width: 601px) {
    .header-text-container{        
        height: 80vh;
        justify-content: center;
    }

    .header-main-text {
        font-size: 3.5rem;
        margin: 0 2rem;
        line-height: 4rem;
        max-width: 70%;
        
    }
    .header-text {
        font-size: 1.3rem;
        margin: 1rem 2rem; 
    }
}
  
@media screen and (max-width: 600px) {
    .header-text-container{        
      height: 60vh;
      padding: 1% 0;
      justify-content: top;
    }
    .header-main-text {
      font-size: 2.5rem;
      line-height: 2.5rem;
      max-width: 100%;
    }
    .header-text {
      font-size: 1.0rem;
      max-width: 65%;
      margin: 2% 0;
     }
    .button-header{   
      margin: 2% 0;
    }
    
}

