:root {
    --h-text-color: hsl(210, 10%, 33%);
    --p-text-color: hsl(201, 11%, 66%);
    --b-text-color: hsl(0, 0%, 100%);
    --button-ios-color: hsl(171, 66%, 44%);
    --button-mac-color: hsl(233, 100%, 69%);
    --font-h1: 'Argue Demo';
    --font-h2: 'Argue Demo';
    --font-button: 'Rounded Elegance', sans-serif;
    --font-body: 'Rounded Elegance';
}

* {
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}



body {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
  
    background-image: url(images/fundo-mesa.png);
    background-size: 100%;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body h1 {
    font-family: var(--font-h1);
    font-size: 3rem;
}

body h2 {
    font-family: var(--font-h2);
    font-size: 2rem;
    margin-bottom: 2rem;
}

body a {
    text-decoration: none;
    color:#1E1E1E;
}



/**CONTATO**/

.contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100vh;
}

.contato a {
    display:inline-flex;
    align-items: center;

    width: 30rem;

    padding: 1.2rem;

    margin: 1rem;
    border-radius: 5rem;

    background-color:  #FAF9F6;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.contato a:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.contato img {
    width: 10%;
    margin-right: 1rem;
}

.contato-list img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(43%) saturate(3068%) hue-rotate(353deg) brightness(97%) contrast(91%);

}



/** FOOTER  **/
footer {
    display: flex;
    height: 8rem;

    width: 100%;

    justify-content: center;
    align-items: center;
}

footer img {
    margin: 2rem;
    height: 3.5rem;
    filter: brightness(0) saturate(100%) invert(11%) sepia(43%) saturate(3068%) hue-rotate(353deg) brightness(97%) contrast(91%);
}


footer img:hover {
    filter: invert(78%) sepia(9%) saturate(240%) hue-rotate(251deg) brightness(100%) contrast(87%);
}



/** MEDIA - ADJUSMENTS **/
@media only screen and (max-width:850px) and (min-width:375px){

body {
    font-size: 0.8rem;
}

body h1 {
    font-size: 1.2rem;
}

body h2 {
    font-size: 1.2rem;
}

body {
background-image: url('images/fundo-mesa.png');
background-size: cover;
background-repeat: no-repeat;
}

.contato a {
    width: 18rem;

    padding: 1rem;

    margin: 0.6rem;
    border-radius: 5rem;


}


.contato img {
    width: 10%;
    margin-right: 1rem;
}

}

/** MEDIA - ADJUSMENTS **/
@media only screen and (max-width:1200px) and (min-width: 851px) {

    body {
        font-size: 1rem;
    }
    
    body h1 {
        font-size: 1.5rem;
    }
    
    body h2 {
        font-size: 1.5rem;
    }
    
    body {
    background-image: url('images/fundo-mesa.png');
    background-size: cover;
    background-repeat: no-repeat;
    }
    
    .contato a {
    background-color: #FAF9F6;
    }

}