@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Poppins&display=swap');

body {
    background-image: url(/assets/img/bgcarwrapping.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.navbar-custom {
    background-color: rgba(0, 0, 0, 0.637);
}

.navbar-custom a {
    color: rgb(0, 0, 0);
}

.navbar-custom a:hover {
    color: rgb(255, 0, 0) !important;
    transition: .5s ease;;
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: rgb(255, 0, 0) !important;
    transition: .5s ease;
}


.informatie h1 {
    text-align: center;
    color: white;
    font-weight: 600;
    margin-top: 80px;
    font-size: 60px;
}

.informatie p {
    text-align: center;
    color: white;
    font-size: 18px;
    margin-top: -10px;
}


.portfolio {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .portfolio img {
    border-radius: 10px;
    transition: transform 0.5s ease;
  }
  
  .portfolio img:hover {
    transition: .5s ease;
    transform: scale(1.01);
    opacity: 1.40;
  }
  
  .portfolio-items-container {
    width: 30%;
    background-color: #ff0000;
    margin: auto;
    display: block;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 80px 0px #d8d8d8;
    -moz-box-shadow: 0px 0px 80px 0px #000000;
    box-shadow: 0px 0px 80px 0px #000000;
    margin-top: 50px;
    text-decoration: none;
  }
  
  .portfolio-items-container img {
    border-radius: 10px;
  }
  
/* Scrollbar */

::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #000000;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .navbar-light .navbar-toggler {
    color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
  }
  
  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }
  
  .navbar-light.navbar-toggler {
    border-color: rgb(255, 255, 255);
  } 

/* Ipad */
@media screen and (max-width: 1410px) {
    /* body {
      background-color: rgb(24, 136, 192);
    }   */

    .portfolio-items-container {
        width: 35%;
        background-color: #0f1735;
        margin: auto;
        display: block;
        border-radius: 10px;
        -webkit-box-shadow: 0px 0px 80px 0px #d8d8d8;
        -moz-box-shadow: 0px 0px 80px 0px #000000;
        box-shadow: 0px 0px 80px 0px #000000;
        margin-top: 100px;
        text-decoration: none;
      }

  }


  /* Telefoon  600*/
  @media screen and (max-width: 800px) {
    /* body {
      background-color: rgb(106, 108, 109);
    }   */
  
    .portfolio-items-container {
        width: 70%;
        background-color: #0f1735;
        margin: auto;
        display: block;
        border-radius: 10px;
        -webkit-box-shadow: 0px 0px 80px 0px #d8d8d8;
        -moz-box-shadow: 0px 0px 80px 0px #000000;
        box-shadow: 0px 0px 80px 0px #000000;
        margin-top: 100px;
        text-decoration: none;
      }

}
  
