* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h2 {
  padding-bottom: 5px;
}

.top,
.telefoon,
.adres,
.openingstijden,
.afspraak {
  width: 100%;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.afspraakbox{
  height: 650px;
}

.top {
  margin-left: -70px;
}

.logo {
  height: 300px;
}

.telefoon {
  p:nth-child(1) {
    font-size: 200%;
  }
  p:nth-child(2) {
    font-size: 200%;
    padding-bottom: 5px;
  }
  p:nth-child(3) {
    font-size: 150%;
    padding-bottom: 5px;
  }
}

.openingstijden {
  table {
    margin: 0 auto;
    padding: 5px 0 10px;
    td {
      padding-left: 10px;
      padding-right: 10px;
    }
    td:nth-child(1) {
      text-align: left;
    }
  }
}

.site-name {
  font-size: 24px;
  color: #333;
}

.button {
  display: inline-block;
  background-color: red;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.top-button:hover {
  background-color: purple;
}

@media (max-width: 768px) {
  .top,
  .telefoon,
  .adres,
  .openingstijden,
  .afspraak {
    flex-direction: column;
  }

  .afspraakbox {
    height: 1100px;
  }
  .top {
    margin: 0;
  }
  .logo {
    width: 100%;
  }
}
