@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;1,300&family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap');

:root {
    --main-color: #F2E0C8;
    --secondary-color: #080401;

    font-family: 'Nunito Sans', sans-serif;

    font-size: 16px;

    color: var(--main-color);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    text-align: center;
}

h2 { font-size: 1.5rem; letter-spacing: 0.25rem; margin-bottom: 0; margin-top: 0;}

h3 { font-size: 1.5rem; }

span { display: block; font-size: 1rem; font-weight: 200; margin-bottom: 2rem;}

p { font-size: 1rem; font-weight: 100;}

i { font-size: 1rem; font-weight: 200; }

a { color: var(--main-color); text-decoration: none;}

button {font-size: 1rem; font-weight: 100;}

input {font-family: 'Nunito Sans', sans-serif; font-weight: 100;}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    h2 {font-size: 2rem;}

    h3 { font-size: 2rem; }
    
    span { font-size: 1.5rem; font-weight: 200; margin-bottom: 2.5rem;}
    
    p { font-size: 1rem;}
    
    i { font-size: 1.25rem; font-weight: 200; }
    
    button {font-size: 1.5rem;}
}
/* 
Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
     
    }

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
     
    }

section {
    background-color: var(--secondary-color);
    padding-top: 20vw;
}

button {
    position: relative;
    width: fit-content;
    padding: 0.5rem 1rem;
    transition: background 0.2s ease-in-out;

    outline: 2px solid var(--secondary-color);
    border: 1px solid var(--main-color);
    border-radius: 0.5rem;
    background-color: var(--secondary-color);

    color: var(--main-color);
    background-color: var(--secondary-color);
}

button:hover {
    background-color: #3b3732;
    cursor: pointer;
}

button:active {
    background-color: var(--main-color);
}

.cookiebanner > span {
    font-size: 1rem;
    margin: 0;
}