:root {
    --background:  #fff;
    --foreground:  #689F6C;
    --thirdground: #CCFB98;
    --primary:     #131923;
    --secundary:   #fff;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

html {
    font-family: "lato", sans-serif;
    font-size: 62.5%; /* Deixa a fonte mais ou menos a 10px a cada 1ren é 10px */

}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}


.container {
    max-width: 1600px;
    height: 100vh;
    margin: 0 auto;
    padding: 0 16px;
    background-color: var(--background-color);
    
}
.error-page {
    background-image: url('../img/error_404.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: var(--foreground);
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--background);
    border-radius: 40px;    
}

.button:hover {    
    transition: background-color 0.3s ease;
    color: var(--thirdground);
    background-color: #004d49;
}

.button:active {
    filter: brightness(0.85);
}
