html{
    width: 100%;
    height: 100%;

}
body{
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 1em;
    font-family: "Raleway";
    background-color: #E8E8E8;
    color: #333333;
    padding: 0;
    margin: 0;

}




div.wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 'header' 'main' 'footer';
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
   border: 2px solid #cc0000;
}

div.wrapper div.header{
    grid-area: header;
    width: 100%;
    height: auto;
}

div.wrapper div.header nav{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100em;
    width: 100%;
    height: auto;
    padding: 0 2em;
    margin: 0 auto;
    border: 2px solid #cc0000;
}


div.wrapper div.main{
    grid-area: main;
    width: 100%;
    height: auto;
}

div.wrapper div.footer{
    grid-area: footer;
    width: 100%;
    height: auto;
}

div.container{
    position: relative;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 95%;
    height: auto;
    gap: 1em;
}


div.container > div{
    padding: 1em;
    margin: 0.5em auto;
}


div.cookie-sources{
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    text-transform: uppercase;
    padding: 0.5rem;
    margin: 1.5rem auto 0.5rem;
}

div.cookie-sources label{
    position: relative;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 10rem;
    width: auto;
    height: auto;
    padding: 5px 10px;
    margin: 4px;
}

div.cookie-footer{
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 5px 0;
    margin: 1.5rem auto 0.5rem;
}

div.cookie-footer button{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-content: center;
    min-width: 8rem;
    width: auto;
    text-transform: uppercase;
    --max-size: 13;
    --min-size: 10;
    font-size: var(--responsive-size);
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #555555;
    border: 1px solid #000000;
    border-radius: 6px;
    padding: 5px 10px;
    margin: 3px;
}

div.cookie-footer button:nth-child(2){
    background-color: #FFFFFF;
    color: #333333;
    font-weight: bold;
    }

div.cookie-footer button.yes-all{
    background-color: #66CC00;
    color: #ffffff;
    }

div.cookie-footer button:hover{
    cursor: pointer;
   background-color: #aaaaaa;
}




