@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&family=Ubuntu:wght@300&display=swap");

* {
  font-family: "Comfortaa", cursive;
}

body {
  background-color: rgb(106, 108, 109);
}

body::-webkit-scrollbar {
  width: 3px;
}

body::-webkit-scrollbar-thumb {
  width: 12px;
  background-color: #f5f5f5;
  border-radius: 50px;
}

.navbar {
  text-align: center;
  padding: 20px;
  background-color: rgb(134, 147, 155);
  box-shadow: black 1px 2px 150px 10px;
}

.navbar a {
  padding: 3px;
  text-decoration: none;
  color: black;
  font-weight: 550;
}

.navbar a:hover {
  color: white;
}

.navbar img {
  float: left;
  width: 90px;
  margin-top: -10px;
}

.webshopitems {
  padding: 10px;
}

.webshop-items {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  flex-wrap: wrap;
  width: 100%;
}

.webshop-items img {
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.5s ease;
}

.webshop-items img:hover {
  transform: scale(1.02);
}

.webshop-items .button {
  background-color: #1d1f20;
  margin-top: 15px;
  padding: 5px 20px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  float: right;
}

.webshop-items-container {
  padding: 40px;
  width: 35%;
  background-color: rgb(255, 255, 255);
  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: 40px;
  text-decoration: none;
}

.webshop-items-container p {
  color: black;
  margin-top: 15px;
  text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.377);
  font-size: 20px;
}

.info h1 {
  color: white;
  text-align: center;
  margin-top: 40px;
}

.info p {
  color: white;
  text-align: center;
  margin-top: -10px;
}

footer {
  text-align: center;
  padding: 1px;
  background-color: rgb(122, 122, 122);
  color: white;
  margin-top: 350px;
}

/* Ipad */
@media screen and (max-width: 992px) {
  body {
    background-color: rgb(106, 108, 109);
  }

  .webshop-items-container {
    padding: 40px;
    width: 50%;
    background-color: rgb(255, 255, 255);
    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: 40px;
    text-decoration: none;
  }

  .webshop-items .button {
    background-color: #1d1f20;
    margin-top: 10px;
    padding: 5px 20px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    float: right;
  }
}

/* Telefoon */
@media screen and (max-width: 600px) {
  body {
    background-color: rgb(106, 108, 109);
  }

  .webshop-items-container {
    padding: 40px;
    width: 50%;
    background-color: rgb(255, 255, 255);
    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: 40px;
    text-decoration: none;
  }

  .webshop-items .button {
    background-color: #1d1f20;
    margin-top: 10px;
    padding: 5px 20px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    float: right;
  }
}
