:root {
    --headerBg: rgb(255, 255, 255);
    --buttonBg: rgb(50, 102, 102);
    --font: rgb(255, 255, 255);
    --bg: rgb(0, 0, 0);
    --accentColor: rgb(173, 173, 173);
    --buttonBgAccent: rgb(125, 0, 0);
    --buttonBgHover: rgb(160, 246, 234);
    --fontHover: rgb(0, 0, 0);
    --buttonBgAccentHover: rgb(255, 31, 31);
}

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

html {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 0 0 0;
}

a {
    text-decoration: none;
    color: #000000;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 20vh;
    background-color: var(--headerBg);
    width: 100%;
    color: yellow;
    text-align: center;
    font-size: 1rem;
    line-height: normal;
    padding: 10px 0 10px 0;
    margin: 0;
}

.home img {
    
    height: 140px;
    object-fit: contain;
    object-position: center;
    
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;

    height: 60vh;
    background-color: var(--bg);
}

.button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 80px;
    background-color: var(--buttonBg);
    width: 50vw;
    color: var(--font);
    text-align: center;
    font-size: 1.5rem;
    line-height: normal;
    padding: 10px 20px 10px 20px;
    margin: 20px 0 20px 0;
    border-radius: 20px;
}

.button:hover {
    border-color: var(--buttonBg);
    border: 5px solid var(--buttonBg);
    background-color: var(--buttonBgHover);
    color: var(--fontHover);
    
}

.buttonAccent {
    background-color: var(--buttonBgAccent);
    
}

.buttonAccent:hover {
    background-color: var(--buttonBgAccentHover);
    border-color: var(--buttonBgAccentHover);
    border: 5px solid var(--buttonBgAccent);
    
}

.disclamer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    
    width: 100%;
    color: var(--accentColor);
    text-align: left;
    font-size: 1rem;
    line-height: normal;
    padding: 100px 20vw 10px 20vw;
    margin: 0;
    text-indent: 20px;

}



.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 20vh;
    background-color: var(--bg);
    width: 100%;
    color: var(--font);
    text-align: center;
    font-size: 1rem;
    line-height: normal;
    padding: 10px 0 10px 0;
    margin: 0;
}

.footer a {
    color: white;
    padding: 10px 0 10px 0;
}

.address span{
    color: var(--accentColor);
}

@media screen and (max-width: 1020px) {
    
    .header {
        height: 80px;
        width: 100%;
        overflow-x: hidden;
    }

    .header img {
        width: auto;
        height: 50px;
        padding: 5px;
        object-fit: cover;
    }

    .container {
        height: auto;
    }

    .button {
        margin: 10px 0 10px 0;
        width: 80vw;
        height: 50px;
    }
        
    .disclamer {
        padding: 10px 2vw 5px 2vw;
        height: 50vh;
        font-size: .7rem;
    }

    .footer {
        padding: 5px 0 5px 0;
        height: 100px;
        font-size: 80%;
    }

    .footer p {
        padding: 5px 0 5px 0;
        
    }

}


