.content h1{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
}

.cookie-consent-modal{
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    align-items: flex-end;
}
.cookie-consent-modal.active{
    display: flex;
}
.content{
    background-color: #fff;
    padding: 5vw 3vw;
    border-radius: 10px 10px 0 0;
}

.btns{
    display: flex;
    justify-content: flex-end;
    margin-top: 2em;
	
}
.btn{
    border: none;
    outline: none;
    padding: .8em 1.5em;
    width: 100px;
    margin-right: 1em;
    border-radius: 3px;
    text-transform: uppercase;
}
.btn.accept:hover{
    background-color: #006400;
	color: #ffcc33;
    
	
}

.btn.cancel:hover{
    background-color: #DC143C;
    color: #ffcc33;
	
}

.content .galleta {
	max-width: 50px;
	position: botton;
	top: -30px;
	left: calc(10% - 10px);
}