@import url("https://fonts.googleapis.com/css2?family=Questrial&display=swap");
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Questrial", sans-serif;
}

:root {
  --primary-color: #33c0cb;
  --secondary-color: #baf6f3;
  --main-nav-btn: #8dc4b3;
  --grey: #f4f9f8;
  --dark-grey: #f6f6e3;
  --white: #fff;
  --black: #000;
  --skin: #eef3d4;
  --active: #d4efe7;
}

body {
  background-color: var(--grey);
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown > .dropdown-toggle:active {
  color: var(--black);
  pointer-events: none;
}

.mynav {
  background-color: var(--grey);
}

.mynav .nav-link {
  color: var(--black);
  font-size: 15px;
}

.mynav .active {
  color: var(--black);
  background-color: var(--active);
}

.mynav .nav-link:hover {
  background-color: var(--main-nav-btn);
}

.mynave .dropdown-item {
  color: var(--black);
  font-size: 15px;
}

.mynave .dropdown-item:hover {
  background-color: var(--main-nav-btn) !important;
}

.maindiv {
  background-color: var(--grey);
}

.maindiv h3 {
  font-weight: 300;
}

.maindiv h4 {
  font-weight: 200;
}

.maincenter {
  background: rgb(185, 245, 242);
  background: linear-gradient(276deg, rgb(185, 245, 242) 0%, rgb(246, 246, 228) 100%);
}

.maincenter p {
  font-size: 20px;
  max-width: 60%;
  margin-bottom: 30px;
}

.maincenter div {
  width: 60%;
  display: flex;
  justify-content: space-between;
}

.mybutton2 {
  width: 60%;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: transparent;
}

.mybutton2:hover {
  background-color: var(--skin);
}

.maincenter .mybutton {
  width: 49.5%;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: transparent;
}

.maincenter .mybutton:hover {
  background-color: var(--skin);
}

.cardsimgs {
  position: relative;
}

.cardsimgs img {
  height: 350px;
  width: 350px;
  border-radius: 100%;
}

.cardsimgs a {
  position: absolute;
  top: 70%;
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  color: var(--skin);
  font-size: 2.5em;
  text-shadow: 0px 0px 10p rgb(0, 0, 0);
}

.linkedincard .linklogo {
  height: 50px;
}

.linkedincard .profilelogo {
  height: 80px;
  width: 80px;
  border-radius: 100%;
  margin-left: 10px;
  margin-top: 20px;
}

.copyright span i {
  border: 2px solid var(--black);
  padding: 5px;
}

.lunch {
  background: rgb(185, 245, 242);
  background: linear-gradient(276deg, rgb(185, 245, 242) 0%, rgb(246, 246, 228) 100%);
}

.lunch img {
  transition-duration: 0.4s;
  cursor: pointer;
}

.lunch img:hover {
  transform: scale(1.05);
}

.Nieuwsgierig {
  position: absolute;
  margin-left: 200px;
  margin-top: 200px;
  height: 50vh;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  padding-right: 100px;
  padding-left: 100px;
}

.Nieuwsgierig h3 {
  font-size: 3em;
}

.contact form {
  width: 60%;
}

.contact form input {
  padding: 20px 30px;
  margin: 0 !important;
  width: 100%;
  border-radius: 0 !important;
}

.contact .row > * {
  padding: 0 !important;
}

.contact textarea {
  padding: 20px 30px;
  height: 160px;
  resize: none;
}

.contact button {
  padding: 15px 30px;
  width: 40%;
  color: var(--white);
  background-color: #373b4d;
}

.contact button:hover {
  color: var(--white);
  background-color: var(--black);
}

@media screen and (max-width: 1024px) {
  .cardsimgs img {
    height: 250px;
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .logoimg {
    width: 230px !important;
  }
}
@media screen and (max-width: 567px) {
  .cardsimgs img {
    height: 450px;
    width: 450px;
  }
}
@media screen and (max-width: 425px) {
  .cardsimgs img {
    height: 350px;
    width: 350px;
  }
  .maincenter div {
    width: 100% !important;
  }
  .maincenter p {
    max-width: 100%;
  }
}
.custom-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.custom-column {
  display: flex;
  align-items: flex-start;
}

/*# sourceMappingURL=styles.css.map */