
    
    body{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-size: 58%;
        background-color: #D1DED3;
        font-family: "Libre Franklin", sans-serif;
    }

    img{
        max-width: 100%;
        height: auto;
    }
    
    
    #pictext {
        margin-top:0;
        padding: 0;
        text-align: right;
        color: #29445D;
        font-size: 0.5rem;
    }
    
    h1{
        text-align: center;
        font-size: 3.5rem;
        color: #29445D;

    }
    h2 {
        text-align: center;
        font-size: 3rem;
        color:#29445D
    }
    h3{
        text-align: center;
        font-size: 2.5rem;
        color:#29445D
    }
    p, label, li{
        font-size: 1.5rem;
        color:#29445D;
        padding: 1rem;
        word-wrap: break-word;
    } 
    p {
        padding: 0.5rem;
    }
    .price-pic{
        text-align: center;
    }
    
    .button{
        width: 100%;
       text-align: center;
       margin-top: 1.8rem;
       
    }
    button{
        height: 3rem;
        width: 8rem;
        background-color: #45767C;
        color: #D1DED3;
        border-radius: 25px;
        font-size: 1.8rem;
        
    }
    .first{
        color: #e60000;
    }
    #price-list{
        list-style: none;
    }
    #orders-to-email{
        text-align: center;
        margin-top: 0.8rem;
    }
    
    footer {
       
       padding: 4rem 0;
       background-color: #45767C;
       color: #29445D ;
    }

    footer ul {
        
        padding: 0;
        list-style: none;
        font-size: 1.8rem;
        margin-bottom: 0;
        display: flex;
        justify-content: space-around;        
        align-items: center;
        flex-wrap: nowrap;
        
    }
    
    footer li > a {
        
        text-decoration: none;
        color: #D1DED3;
        opacity: 0.8;
    }
    footer li > a:hover{
        color:#000;
        opacity: 1.0;
    }
    footer p {
        font-size: 1.2rem;
        text-align: center;
    }
    .cta {
        text-decoration: none;
        color: #D1DED3;
        opacity: 0.8;
        
    }
    .cta:hover{
        color: #000;
        opacity: 1.0;
    }
    @media only screen and (max-width: 768px) {
        footer ul {
            display: block;
            margin: auto;
        }    
    }
    
    
   
    

    @keyframes cookiesRising {
        0%{
            transform: translateY(100%);
        }
        100%{
            transform: translateY(0%);
        }
        
    }
   #container {
    margin: 0;
    padding: 0;
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
    
   
   }
   #cookie-popup{ 
    
    animation: 3s ease-out 0s 1 cookiesRising;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    background-color: #D1DED3;
    padding-bottom: 1rem;
    max-width: 50%;
    
   }
    #cookie-popup > h4{
        font-size: 1.2rem;
    }
    #cookie-popup > p{
        font-size: 0.9rem;
    }
    #ok:hover, #no-consent:hover, #exit:hover{
        font-size: 0.7rem;
        color:#000;
    }
    #ok, #no-consent, #exit{
        font-size: 0.7rem;
        height: 2rem;
        width: 4rem;
    }

    

    @media only screen and (max-width: 600px){

        #cookie-popup {
    max-width: 85%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    background-color: #D1DED3;
    padding-bottom: 0.66rem;
    border: 0.1rem solid #000;
    
        }
        #cookie-popup > h4{
            font-size: 0.6rem;
        }
        #cookie-popup > p{
            font-size: 0.475rem;
        }
        
        #ok:hover, #no-consent:hover, #exit:hover{
            font-size: 0.475rem;
            color:#000;
        }
        #ok, #no-consent, #exit{
            font-size: 0.35rem;
            width:2.5rem;
            height: 1.5rem;
            margin-top: 0.5rem;
        }




    }



   

