@font-face {
    font-family: "Open Sans";
    src: url(./open-sans-v17-latin/open-sans-v17-latin-regular.woff);
}

@font-face {
    font-family: "Handlee";
    src: url(./handlee/Handlee-Regular.ttf);
}

:root {
    --old-bg:#fdf8da;
    --new-bg:#4e559a;
}
html {
    /* 1rem = 10px */
    font-size: 62.5%;
}

body {
    font-size:1.6rem;
    text-align:center;
    color:var(--old-blue);
    background-color:var(--old-bg);
    transition: background-color 8s ease-out;
}

body.redesign {
    background-color:var(--new-bg)
}

html, body, .body {
    height: 100%;
    width: 100%;
    margin:0;
    padding:0;
    font-family: "Open Sans", sans-serif;
}

.body {
    position:absolute;
    top:0;
    left:0;
}

.content {
    height:100%;
    width:calc(100% - 40rem);
    max-width: 80rem;
    margin:auto;
    position:relative;
    overflow:auto;
    padding-top:5rem;
    padding-left:10rem;
    padding-right:10rem;
    box-sizing:border-box;
}

.body:after {
    content:'';
    display:block;
    height:100%;
    width:calc(100% - 40rem);
    max-width: 80rem;
    margin: auto;
    background-color:rgba(255,255,255,0.4);
    transition: backround-color 8s ease-out;
}

.redesign .body:after {
    background-color:rgba(255,255,255,0.7);
}

.fb {
    text-align: center;
}

.fb a {
    background: url(facebook.png) left center no-repeat transparent;
    background-size: contain;
    padding-left: 3rem;
}

.info {
    display:flex;
}

.logo {
    width:20rem;
    height:30rem;
    background: no-repeat center center transparent;
    background-image:url(logo_alt.png);
    transition: background-image 8s ease-in;
    background-size:contain;
    margin:auto;
}

.redesign .logo {
    background-image:url(logo_neu.png);
}

.text {
    flex:1;
    text-align:justify;
    padding-left:5rem;
}

h1, h2, h3 {
    font-family: "Handlee", sans-serif;
}

h3 {
    margin-top:5rem;
    background:rgba(255,255,255,0.5);
}

.petition {
    border:0.2rem solid var(--new-bg);
}

.petition > div {
    border:none !important;
}

@media (max-width: 999px){
    .content,
    .body:after {
        width:calc(100% - 20rem);
    }
}

@media (max-width: 799px) {

    .content {
        padding-left:5rem;
        padding-right:5rem;
    }

    .info {
        display:block;
    }

    .text {
        padding-left:0;
    }

}

h1 {
    margin-bottom:0;
    text-transform:uppercase;
    padding-top:1rem;
    margin-top:0;
}

h2 {
    margin-top:0;
    padding:1rem 0;
}

h3 {
    text-transform:uppercase;
    padding:1rem 0;
}

.disclaimer {
    font-size:smaller;
    margin-top:5rem;
}

.amazon-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 599px) {

    .content {
        width:100%;
        padding-top:2rem;
        padding-bottom:0;
    }

    .body:after {
        width:calc(100% - 4rem);
    }

    h1 {
        font-size:1.5rem;
    }
}
