*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
    --ff-main: "poppins", serif;
    --ff-accent: "anton", serif;
  }

body {
  width: 100%;
  min-height: 100dvh;
  font-family: var(--ff-main);
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  background-color: #F2F7F9;
  background-image: url(assets/background.png);
  margin: 0;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--ff-main);
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  padding: 3rem;
}

.bouw-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;  
}

.bouw-button {
  width: 200px;
  height: 240px;
  background-color: #89B15E;
  border: none;
  border-radius: 10px;
  font-family: var(--ff-accent);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 1rem;
}

a{
  text-decoration: none;
}

.text-container {
  width: 100%;
  height: auto;
  padding: 2rem 5rem;
}

h1 {
  font-family: var(--ff-main);
  font-size: 24;
  font-weight: 600;
  color: #006291;
}

.uitleg {
  font-family: var(--ff-main);
  font-size: 16;
  font-weight: 400;
  color: #000000;

}