@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);
}

.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: 40px;
}

.informatie p {
    text-align: center;
    color: white;
    font-size: 18px;
    margin-top: -10px;
}

.informatie img {
    margin: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    border-radius: 20px;
    transition: .5s ease;
}

.informatie img:hover {
    margin: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    border-radius: 20px;
    transition: .5s ease;
    transform: scale(1.10);
}

.informatie button {
    padding: 10px 20px;
    background-color: rgb(155, 0, 0);
    border-radius: 6px;
    outline: none;
    border: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    transition: .5s ease;
}

.informatie button:hover {
    padding: 10px 20px;
    background-color: rgb(223, 0, 0);
    border-radius: 6px;
    outline: none;
    border: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    transition: .5s ease;
}

.informatie a {
    text-decoration: none;
    color: white;
    text-align: center;
    font-weight: 500;
}

/* 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);
  } 


  /* Telefoon  600*/
  @media screen and (max-width: 800px) {

    .informatie img {
        margin: 100px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        border-radius: 20px;
        transition: .5s ease;
    }
    
    .informatie img:hover {
        margin: 100px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        border-radius: 20px;
        transition: .5s ease;
        transform: scale(1.10);
    }
}
  
