
@font-face {
    font-family: 'Farmacia';
    src: url('../fonts/NGFarmaciaSoftTRIAL-Regular.woff2') format('woff2'),
        url('../fonts/NGFarmaciaSoftTRIAL-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.farmacia {
    font-family: Farmacia, Arial, sans-serif;
    font-size: 2.5vw;
}

@font-face {
font-family: 'GroteskRemix';
src: url('../fonts/GroteskRemixMonospace-regular.woff2') format('woff2'),
    url('../fonts/GroteskRemixMonospace-regular.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}


body{
    background:#f0f0f0;
    background-image: url(../images/bg26.png);
    background-size: 100% auto; 

    min-height: 100vh;
    margin: 0;
    position: relative;
}

a {
    text-decoration: none;
}

a:link, a:visited {
    color:#559;
}

a:hover, a:active {
    color: #000;
}

#logo {
    position: absolute;
    width: 74%;
    left: 13%;
    margin: auto;
    margin-bottom: 20px;
    text-align: center;
}

#logoimg {
    width: 100%;
}

#newsletter {
    font-family: Farmacia, Arial, sans-serif;
    position: absolute;
    top: 7vw;
    left: 4vw;
    transform: rotate(-40deg);
    font-size: 3vw;
    line-height: 3vw;
    transition: transform .2s ease-in-out;
    cursor: pointer;

    z-index: 11;
}

#newsletter:hover {
    transform: scale(110%) rotate(-35deg);
}


#newsletter a:link, #newsletter a:visited {
    font-style: normal;
    text-decoration: none;
    color: inherit;
}

#newsletter a:hover, #newsletter a:active {
    color: #555;
}

.nav {
    position: absolute;
    display: flex;
    margin: auto;
    left: 0;
    width: 100%;
    top: 19vw;

    justify-content: center;
    flex-wrap: wrap;
    font-family: Farmacia, Arial, sans-serif;
    font-size: 6.5vw;
    line-height: 7vw;
    margin-bottom: 20px;

    z-index: 10;
}
.break {
    flex-basis: 100%;
    height: 0;
}

.nav a:link, .nav a:visited {
    text-decoration: none;
    padding: 0 2.5vw 0 2.5vw;
    color: #000;
    text-shadow: -0.5px -0.5px 0 #fff, 0.5px -0.5px 0 #fff, -0.5px 0.5px 0 #fff, 0.5px 0.5px 0 #fff;
    text-underline-offset: 0.3vw;
}


.nav a:hover, .nav a:active, #vald {
    color: #666;
    text-decoration:underline;
}


#content {
    font-family: GroteskRemix, Arial, sans-serif;
    position: relative;
    top: 0;
    width: 100%;
    min-height: calc(100vh - 60vw);
    left: 0;
    padding-top: 35vw;
    padding-bottom: 600px;
    z-index: 1;
}

.contentbox {
    position: relative;
    margin: auto;
    width: 70%;
}

p {
    font-size: 2vw;
}

h1 {
    font-size: 2vw;
    text-decoration: underline;
}

#nlreg {
    display: none;
    position: fixed;
    top: 20vw;
    left: 20vw;
    right: 20vw;
    background-color: #fff;
    z-index: 10000;
    cursor: pointer;
    font-family: GroteskRemix, Arial, sans-serif;

    z-index: 100;
}

#closenlreg {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1vw;
    cursor: pointer;
    z-index: 10;
}

#newsletterForm {
    padding: 2vw 5vw 3vw 5vw;
    position: relative;
}

input[type=text], input[type=email] {
    width: 100%;
    margin: 0.5vw 0 2vw 0;
    font-family: GroteskRemix, Arial, sans-serif;
    font-size: 2vw;
    line-height: 3vw;
    background-color: #efefef;
    border: 0;
    border-bottom: 1px dashed #000;
} 
input[type=checkbox] {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    margin: 0;
}
.checkmark {
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: #efefef;
    border: 1px dashed #000;
    margin: 0;

    cursor: pointer;
}
input ~ .checkmark {
    background-color: #efefef;
}
input:checked ~ .checkmark {
    background-color: #2196F3;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
input:checked ~ .checkmark:after {
    display: block;
}
.checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

button[type=submit] {
    border: 1px solid #000;
    background-color: #eee;
    font-family: GroteskRemix, Arial, sans-serif;
    font-size: 1.8vw;
    cursor: pointer;
}


#footer {
    background: rgba(255, 255, 255, .3);
    position:absolute;
    bottom: 0;
    width: 100%;
    height: 20vw;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 5vw;
    font-size: 1.5vw;
}

.footerbox {
    padding-top: 2vw;
}

.posterholder {
    width: 100%;
    position: relative;
    display: flex;
    gap: 1vw;
    align-items:flex-start;
    justify-content:center;
    flex-direction: row;
    flex-wrap: wrap;
}

.poster {
    display: inline-block;
    position: relative;
    width: 15vw;
    margin-bottom: 1vw;
    align-self:flex-start;
}




.image {
    width: 100%;
}

@media (max-width: 600px) {

    .nav {
        display: block;
    }
    
    .nav a {
        text-align: center;
        display: block;
        background-color: inherit;
        font-size: 7vw;
    }

    #content {
        top: 40vw;

        padding-bottom: 600px;
    }

    .contentbox {
        width: 90%;

    }
    p, h1 {
        font-size: 5vw;
    }

    #footer {
        font-size: 4vw;
        flex-direction: column;

        height: 500px;
    }

    .footerbox {
        padding-left: 5vw;
    }


    .poster {
        width: 100%;
    }
}
