*{
    margin: 0;
    padding: 0;
    font-family: 'robot', sans-serif;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #EEE2DC;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
}

header {
    background-color:transparent;
    color: #E3E2DF;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 50px;
}

.active {
    color: #9fb5bd;
}

nav li {
    margin: 0 15px;
    background-color: #EDC7B7; 
    padding: 10px 20px; 
    border-radius: 5px;
}

nav li:hover {
    margin: 0 15px;
    background-color: #E3AFBC; 
    padding: 10px 20px; 
    border-radius: 5px;
}

nav a {
    text-decoration: none;
    color: #AC3B61;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}

nav a:hover {
    text-decoration: underline;
}

main {
    width: 99vw;
    padding: 20px;
}
.heading{
    font-size: 50px;
    color: #AC3B61;
    margin-bottom: 20px;
}
.beschrijving{
    width: 80%;
    font-size: 20px;
    color: #AC3B61;
    line-height: 25px;
}

.container{
    width: 100%;
    height: 86vh;

}

.row{
    display: flex;
    height: 88%;
    align-items: center;
}

.col{
    flex-basis: 50%;
    margin-left: 157px;
}

button {
    font-family: 'Times New Roman', Times, serif;
    width: 180px;
    color: #AC3B61;
    font-size: 16px;
    font-weight: bold; 
    padding: 12px 0;
    background: #EDC7B7;
    border: 0;
    border-radius: 20px;
    outline: none;
    margin-top: 30px;
}

button:hover{
    color: #AC3B61;
    background-color:#E3AFBC ;
}

.image{
    width: 200px;
    height: 260px;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-position: center;
    background-size: cover;
    transition: transform 0.3s; 
}

.image1{
    background-image: url(https://www.booktopia.com.au/covers/200/9781474898652/0000/disney-the-lion-king.jpg);
    
}

.image2{
    background-image: url(https://lumiere-a.akamaihd.net/v1/images/p_liloandstitch_19755_0ba5c55e.jpeg)
}

.image3{
    background-image: url(https://musicimage.xboxlive.com/catalog/video.movie.8D6KGWZL52FN/image?locale=nl-be&mode=crop&purposes=BoxArt&q=90&h=225&w=150&format=jpg);
}

.image4{
    background-image: url(https://m.media-amazon.com/images/M/MV5BMTc3NTUzNTI4MV5BMl5BanBnXkFtZTgwNjU0NjU5NzE@._V1_.jpg)

}


.image:hover {
    transform: translateY(-10px) scale(1.1); 
}

.populair{
        margin-left: 125px;
        font-size: 30px;
        color: #AC3B61;
        margin-bottom: 40px;
       
}

/* Add this CSS to your existing stylesheet */
footer {
    background-color: #EDC7B7;
    padding: 25px 30px 20px;
}
 


    .socialIcons{    
        display: flex;
      justify-content: center;
     
    }
    
    .socialIcons a{
        text-decoration: none;
        padding: 10px;
        background-color: #EEE2DC;
        margin: 10px;
        border-radius: 50%;

    }

    .socialIcons a i{
        font-size: 2em;
        color: #AC3B61;
        opacity: 0.9;
    }


    .socialIcons a:hover{
        background-color: #E3AFBC;
        transition: 0.5s;
    }
        
    .socialIcons a:hover i{
        color: #EDC7B7;
        transition: 0.5s;  
    }

    .footerNav{
        margin: 5px 0;
    }

    .footerNav ul{
        display: flex;
        justify-content: center;
    }
        
    
    .footerNav ul a{
        color: #AC3B61;
        margin: 20px;
        text-decoration: none;
        opacity: 0.7;
        font-weight: bold;
        font-size: 20px;
        font-family: 'Times New Roman', Times, serif;
        margin-left: 20px;
    }

/*loader/spinner */
    .preloader {
        height: 100%;
        width: 100%;
        background: #fff;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 10000;
        perspective: 1600px;
        perspective-origin: 20% 50%;
        transition: 0.5s all;
        opacity: 1;
      }
      
      .spinner {
        width: 80px;
        height: 80px;
        border: 2px solid #f3f3f3;
        border-top: 3px solid #0088cf;
        border-radius: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        animation: spin 1s infinite linear;
      }
      
      .preloader.fade {
        opacity: 0;
      }
      
      .b-ico-preloader {
        background: url(http://weblaboratory.in.ua/wp-content/themes/graphy/images/new_logo.svg);
        background-size: cover;
        width: 52px;
        height: 67px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        animation: ico 5s infinite linear;
        transform-style: preserve-3d;
      }
      
      @keyframes spin {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }
      
      @keyframes ico {
        from {
          transform: rotateY(0deg);
        }
        to {
          transform: rotateY(360deg);
        }
      }


   

     /*slide in van links*/
      button, .beschrijving, h1 {
        -webkit-animation-name: fadein;
        -webkit-animation-duration: 3s;
        -moz-animation-name: fadein;
        -moz-animation-duration: 3s;
        -ms-animation-name: fadein;
        -ms-animation-duration: 3s;
        -o-animation-name: fadein;
        -o-animation-duration: 3s;
        animation-name: fadein;
        animation-duration: 3s;
      }
      
  
      
      @-webkit-keyframes fadein {
        0% { opacity: 0; margin-left: -250px; }
        100% { opacity: 1; margin-left: 0; }
      }
      
      @-moz-keyframes fadein {
        0% { opacity: 0; margin-left: -250px; }
        100% { opacity: 1; margin-left: 0; }
      }
      
      @-ms-keyframes fadein {
        0% { opacity: 0; margin-left: -250px; }
        100% { opacity: 1; margin-left: 0; }
      }
      
      @-o-keyframes fadein {
        0% { opacity: 0; margin-left: -250px; }
        100% { opacity: 1; margin-left: 0; }
      }
      
      @keyframes fadein {
        0% { opacity: 0; margin-left: -250px; }
        100% { opacity: 1; margin-left: 0; }
      }




 /*slide in van rechts*/

    .image, .populair {
        animation-name: slideFromRight;
        animation-duration: 3s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        opacity: 0; /* Start hidden */
        transform: translateX(100%); /* Start off-screen on the right */
    }

      @keyframes slideFromRight {
        0% {
          opacity: 0;
          transform: translateX(100%);
        }
        100% {
          opacity: 1;
          transform: translateX(0);
        }
      }
      

      /*slide van boven */
        nav {
            animation-name: fallFromTop;
            animation-duration: 3s;
            animation-timing-function: ease-in-out;
            animation-fill-mode: forwards;
            opacity: 0; /* Start hidden */
            transform: translateY(-100%); /* Start off-screen at the top */
        }
        
        @keyframes fallFromTop {
     0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
    }


     /*slide van bdeden */
    .socialIcons,.footerNav {
        animation-name: slideFromBottom;
        animation-duration: 3s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        opacity: 0; /* Start hidden */
        transform: translateY(100%); /* Start off-screen at the bottom */
      }

    @keyframes slideFromBottom {
        0% {
          opacity: 0;
          transform: translateY(100%);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }
      

      