@import url("https://rsms.me/inter/inter.css");
html {
  font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
  html {
    font-family: "Inter var", sans-serif;
  }
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
i{
  font-style: italic;
}

html {
  scroll-behavior: smooth;
}

iframe {
  height: 100%;
  width: 100%;
}

.prototype {
  display: flex;
  justify-content: center;
  align-items: center;
}

#projectleider .prototype {
  background-color: #FAFAFA;
}

#opbouwer .prototype {
  background-color: #f9ebc8;
}

#leverancier .prototype {
  background-color: #eaf2ff;
}

.box {
  overflow-wrap: anywhere;

  width: 100%;
  height: 100%;
  padding: 64px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1080px) {
  .box.text {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 600px) {
  .box {
    padding: 32px;
  }
}
@media only screen and (max-width: 380px) {
  .box {
    padding: 16px;
  }
}

.container {
  scroll-snap-align: start;
  display: flex;
  flex-direction: row;
  height: 100vh;
}
@media only screen and (max-width: 1080px) {
  .container {
    display: flex;
    flex-direction: column-reverse;
    height: 200vh;
  }
}

.text h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 120%;
}
@media only screen and (max-width: 380px) {
  .text h1 {
    font-size: 32px;
  }
}


.text p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 140%;
  color: #545561;
}

.text .number {
  width: 24px;
  height: 24px;
  background: rgb(238, 238, 238);
  color: #000;
  text-align: center;
  display: inline-block;
  border-radius: 24px;
  margin-right: 8px;
  font-weight: 700;
}

button {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  margin-right: 16px;
  margin-top: 16px;
  transition: 0.2s;
  width: 175px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: #000;
}
button:hover {
  cursor: pointer;
}

.navigation{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.header-image{
  background-position: center;
  background-image: url("../src/header.png");
  background-size: cover;
}

.summary{
  width: 225px;
  background-color: #FFF;
  color: #0066FF;
}

.text p.warning {
  background: #ffcd4e20;
  padding: 16px;
  border-radius: 8px;
  color: #ffb700;
}

.text p.warning .number {
  background-color: #ffb700;
  color: #FFF;
  text-align: center;
  display: inline-block;
  border-radius: 24px;
  margin-right: 8px;
  font-weight: 700;
}

a.link {
  /* border-radius: 8px; */
  text-decoration: underline;
  /* background: #46464620; */
  color: rgba(0, 0, 0, 0.699);
  margin-top: 16px;
  /* padding: 16px; */
  /* font-weight: 500; */
}