
header { 
  display: grid;
  align-items: center;
  justify-content: center;
  width: 500px;
  height:115px;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  border: 3px solid darkgrey;
  border-radius: 30px;
  background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url()
} 

header h1 {
  color:black;
  font-family: Georgia, serif;
  font-size: 2.5em;
  font-variant: small-caps;
  text-align: center;
  margin-top: 0px;
}

header h2 {
  font-size: 3.5em;
  background: -webkit-linear-gradient(rgb(188, 12, 241), rgb(212, 4, 4));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Georgia, serif;
  font-variant: small-caps ;
  text-align: center;
  margin-top: -25px;
}

.logo {
display: flex;
align-items: center;
justify-content: center;
width: 210px;
height: 50px;
position: absolute;
top: 33px;
left: 195px;
transform: translateX(-50%);
display: inline-block;
border: 3px solid darkgrey;
border-radius: 30px;
background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url()

}
.logo a {
display: block;
position:relative;
font-size: 2.5em;
background: -webkit-linear-gradient(rgb(188, 12, 241), rgb(212, 4, 4));
background-clip: text;
-webkit-text-fill-color: transparent;
font-family: Georgia, serif;
font-variant: small-caps ;
text-align: center;
padding-top: 0px;
padding-left: 0px;
font-weight: bold;
}

.doos {
box-sizing: border-box;
display: flexbox;
position:relative;
background: none;
border: 19px solid darkgrey;
border-radius: 10px;
width: 47%;
height: 531px;
top: 223px;
z-index: -7;
margin-left: auto;
margin-right: auto;
}

.formdoosgelukt {
  box-sizing: border-box;
  display: block;
  position:relative;
  background: black;
  border: 19px solid darkgrey;
  border-radius: 10px;
  width: 47%;
  height: 310px;
  top: 223px;
  margin-left: auto;
  margin-right: auto;
  font-family: Georgia, serif;
  font-variant: small-caps ;
  }

  .formdoosgelukt h2 {
    font-size: 3.5em;
    background: -webkit-linear-gradient(rgb(188, 12, 241), rgb(212, 4, 4));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Georgia, serif;
    font-variant: small-caps ;
    text-align: center;
    margin-top: 0px;
  }
  .formdoosgelukt p {
    font-size: 1.5em;
    color: yellow;
    background-clip: text;
    font-family: Georgia, serif;
    font-variant: small-caps ;
    text-align: center;
    margin-top: 0px;
  }

.winkel {
  display: block;
  position:relative;
  background: none;
  border-radius: 10px;
  width: 100%;
  height:0px;
  top: 0px;
  z-index: -6;
  margin-left: auto;
  margin-right: auto;
}

.winkel img {
box-sizing: border-box;
display: block;
position:relative;
background: darkgray;
border: 1.5px solid black;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
width: 43%;
height:500px;
top: 253px;
margin-left: auto;
margin-right: auto;
}

.actiedoos {
  box-sizing: border-box;
  display: flexbox;
  position:relative;
  background: none;
  border: 19px solid darkgrey;
  border-radius: 10px;
  width: 34%;
  height: 431px;
  top: 223px;
  z-index: -7;
  margin-left: auto;
  margin-right: auto;
  }

.actie {
  display: block;
  position:relative;
  background: none;
  border-radius: 10px;
  width: 100%;
  height:0px;
  top: 0px;
  z-index: -6;
  margin-left: auto;
  margin-right: auto;
}

.actie img {
box-sizing: border-box;
display: block;
position:relative;
background: darkgray;
border: 1.5px solid black;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
width: 30%;
height: 400px;
top: 253px;
margin-left: auto;
margin-right: auto;
}


#navigation {
  display: block;
  color: black; 
}

#menuToggle {
display: block;
position: absolute;
top: 50px;
left: 50px;

z-index: 1;

-webkit-user-select: none;
user-select: none;
}

#menuToggle a
{
text-decoration: none;
color: #232323;

transition: color 0.3s ease;
}

#menuToggle a:hover
{
color: rgb(255, 99, 71);
}


#menuToggle input
{
display: block;
width: 40px;
height: 32px;
position: absolute;
top: -7px;
left: -5px;

cursor: pointer;

opacity: 0; /* hide this */
z-index: 2; /* and place it over the hamburger */

-webkit-touch-callout: none;
}

/*
* Just a quick hamburger
*/
#menuToggle span
{
display: block;
width: 33px;
height: 4px;
margin-bottom: 5px;
position: relative;

background: tomato;
border-radius: 3px;

z-index: 1;

transform-origin: 4px 0px;

transition: transform 1.5s cubic-bezier(0.77,0.2,0.05,1.0),
            background 1.5s cubic-bezier(0.77,0.2,0.05,1.0),
            opacity 1.55s ease;
}

#menuToggle span:first-child
{
transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
transform-origin: 0% 100%;
}

/* 
* Transform all the slices of hamburger
* into a crossmark.
*/
#menuToggle input:checked ~ span
{
opacity: 1;
transform: rotate(45deg) translate(-2px, -1px);
background: tomato;
}

/*
* But let's hide the middle one.
*/
#menuToggle input:checked ~ span:nth-last-child(3)
{
opacity: 0;
transform: rotate(0deg) scale(0.2, 0.2);
}

/*
* Ohyeah and the last one should go the other direction
*/
#menuToggle input:checked ~ span:nth-last-child(2)
{
transform: rotate(-45deg) translate(0, -1px);
}

/*
* Make this absolute positioned
* at the top left of the screen
*/
#menu
{
position: absolute;
width: 200px;
margin: -100px 0 0 -50px;
padding: 50px;
padding-top: 125px;
border: 2px;
border-color: red;
background: #ededed;
list-style-type: none;
-webkit-font-smoothing: antialiased;
/* to stop flickering of text in safari */

transform-origin: 0% 0%;
transform: translate(-100%, 0);

transition: transform 1.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu img {
margin-left: 100px;
margin-top: -75px;
}

#menu li
{
padding: 10px 0;
font-size: 22px;
}

/*
* And let's slide it in from the left
*/
#menuToggle input:checked ~ ul
{
transform: none;
}

#scroll-container-index {
  box-sizing: border-box;
  position: relative;
  color: black;
  border: 1.5px solid black;
  top: 183px;
  margin-left: auto;
  margin-right: auto;
  width: 47%;
  height: 40px;
  font-size: 30px;
   background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url();
   font-family: Georgia, serif;
  font-variant: small-caps ;
  
  overflow: hidden;
}

#scroll-container-acties {
    box-sizing: border-box;
    position: relative;
    color: black;
    border: 1.5px solid black;
    top: 183px;
    margin-left: auto;
    margin-right: auto;
    width: 34%;
    height: 40px;
    font-size: 30px;
     background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url();
     font-family: Georgia, serif;
    font-variant: small-caps ;
    
    overflow: hidden;
  }

  #scroll-container-helaas {
    box-sizing: border-box;
    position: relative;
    color: black;
    border: 1.5px solid black;
    top: 183px;
    margin-left: auto;
    margin-right: auto;
    width: 34%;
    height: 40px;
    font-size: 30px;
     background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url();
     font-family: Georgia, serif;
    font-variant: small-caps ;
    
    overflow: hidden;
  }
  
  #scroll-text {
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    
    -moz-animation: my-animation 30s linear infinite;
    -webkit-animation: my-animation 30s linear infinite;
    animation: my-animation 30s linear infinite;
  }
  
  /* for Firefox */
  @-moz-keyframes my-animation {
    from { -moz-transform: translateX(100%); }
    to { -moz-transform: translateX(-100%); }
  }
  
  /* for Chrome */
  @-webkit-keyframes my-animation {
    from { -webkit-transform: translateX(100%); }
    to { -webkit-transform: translateX(-100%); }
  }
  
  @keyframes my-animation {
    from {
      -moz-transform: translateX(100%);
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -moz-transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }

  .container {
    display: inline-block;
    position: absolute;
    top: 230px;
    left: 0px;    
    width: -webkit-fill-available;
    height: auto;
      
    align-items: center;
    justify-content: center;
   
  }
  
  .gallerijbg {
  display: block;
  margin-top:50px;
  width: -webkit-fill-available;
  height: 400px;
  
    background: linear-gradient(to bottom,rgb(255, 99, 71)25%,rgba(255, 255, 0)100%), url();
    border-radius: 100px;
    opacity: 0.7; 
  }
    
  .gallery {
     display: grid;
     margin-top: -400px;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     grid-gap: 10px;
    
  
    
  }
  .gallery img {
    display:block;
    position: relative;
    width: 70%;
    padding-left: 25px;
  }
  
  
  
  .gallerijbalk {
    display: grid;
    margin-top: 0px;
    height:40px;
    margin-left: 35px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
  }
  
  .gallerijbalk p {
    display:grid;
    background: linear-gradient(to top,rgb(0, 0, 0)25%,rgba(255, 255, 255)100%), url();
    color:white;
    font-size: 36px;;
    height: 40px;
    border-radius: 100px;;
    position: relative;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;  
    width: 80%;
    padding-left: 0px;
    padding-bottom: 2px;
    margin-top: -70px;
  }



.tekst-actie {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 380px;
  height:275px;
  position: absolute;
  top: 200px;
  left: 14%;
  transform: translateX(-50%);
  display: inline-block;
  border: 3px solid darkgrey;
  border-radius: 30px;
  background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url()
}

.tekst-actie h1 {
  color:black;
  font-family: Georgia, serif;
  font-size: 2.5em;
  font-variant: small-caps;
  text-align: center;
  margin-top: 8px; 
}

.tekst-actie h2 {
  color:black;
  font-family: Georgia, serif;
  font-size: 2em;
  font-variant: small-caps;
  text-align: center;
  margin-top: 0px; 
} 

.tekst-actie p {
  color:black;
  font-family: Georgia, serif;
  font-size: 1.2em;
  font-variant: small-caps;
  text-align: center;
  margin-top: 0px; 
}

.euro-color {
  color: #ff0000;
  font-family: Georgia, serif;
  font-size: 2em;
  font-variant: small-caps;
}

.tekst {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 380px;
  height:275px;
  position: absolute;
  top: 200px;
  left: 12%;
  transform: translateX(-50%);
  display: inline-block;
  border: 3px solid darkgrey;
  border-radius: 30px;
  background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url()
}

  .tekst h1 {
    color:black;
    font-family: Georgia, serif;
    font-size: 2.5em;
    font-variant: small-caps;
    text-align: center;
    margin-top: 8px; 
  }

  .tekst h2 {
    color:black;
    font-family: Georgia, serif;
    font-size: 2em;
    font-variant: small-caps;
    text-align: center;
    margin-top: 0px; 
  } 

  .tekst p {
    color:black;
    font-family: Georgia, serif;
    font-size: 1.2em;
    font-variant: small-caps;
    text-align: center;
    margin-top: 0px; 
  }

  form {
    max-width: 400px;
    margin: 200px auto;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 5px;
  }

  label {
    display: block;
    margin-bottom: 5px;
  }

  input, textarea {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }

  button {
  background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url();
  font-family: Georgia, serif;
  font-size: 2em;
  font-weight: bold;
  font-variant: small-caps;  
  color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }

  button:hover {
    background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url();
    font-family: Georgia, serif;
    font-size: 2em;
    font-weight: bold;
    font-variant: small-caps;
    color: green;
      padding: 10px 20px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
    }

  .g-recaptcha {
    padding-top: 5px;
  }


    
  
  .timer {
    font-size: 24px;
    text-align: center;
    margin-top: 190px;
    color:green;
    display: flex;  
    justify-content: center; 
    align-items: center;  
  }

  .timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 60px;
    padding: 10px;
    background-color: black;
    border:solid #f1e60c;
    border-radius: 5px;
    margin: 0 5px;
  }

  .timer-text {
    font-size: 1em;
    margin-top: 5px;
  }
  

  
  .days,.hours,.minutes,.seconds {
    display: inline-block;
    top: 0px;
    width: 100px;
    height: 60px;
    line-height: 20px;
    background-color: black;
    border-radius: 5px;
    margin: 0 10px;
    background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url();
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Georgia, serif;
    font-size: 30px;
  }
  

  @keyframes countdown {
    from { background-color: #f2f2f2; }
    to { background-color: #ffcccc; }
  }
  
  .days.expired,.hours.expired,.minutes.expired,.seconds.expired {
    animation: countdown 1s infinite;
  }


footer { 
display:block;
position: absolute;
bottom: 0px;
left: 0px;
width: -webkit-fill-available;
height: 120px;
background-color: black;
text-align: center;
}

footer p {
padding-top: 0px;
color:white;
font-size: 20px


}

footer h1 {
padding-top: 0px;
font-size: 36px;
background: -webkit-linear-gradient(rgb(188, 12, 241), rgb(212, 4, 4));
background-clip: text;
-webkit-text-fill-color: transparent;

}

  /* mobile version */

  @media only sreen and (max-width: 600px) {

header {
  width:50%;
  top: 190px;
      }

.winkel img {
  top: 500px;
  width: 50%;
  height: auto;
}

.tekst-actie {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 380px;
  height:275px;
  position: absolute;
  top: 200px;
  left: center;
  transform: translateX(-50%);
  display: inline-block;
  border: 3px solid darkgrey;
  border-radius: 30px;
  background: linear-gradient(to bottom,rgba(255,99,71)1%,rgba(255,255,0)100%), url()
}

.tekst-actie h1 {
   color:black;
  font-family: Georgia, serif;
  font-size: 2.5em;
  font-variant: small-caps;
  text-align: center;
  margin-top: 8px; 
}

.tekst-actie h2 {
  color:black;
  font-family: Georgia, serif;
  font-size: 2em;
  font-variant: small-caps;
  text-align: center;
  margin-top: 0px; 
} 

.tekst-actie p {
  color:black;
  font-family: Georgia, serif;
  font-size: 1.2em;
  font-variant: small-caps;
  text-align: center;
  margin-top: 0px; 
}

  }
