html {
  height: 100%;
}

body {
  margin: 0;
  font-size: 62.5%;
  min-height: 100%;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
}

.buttons_sidebar {
  background-color: #0BB410;
  width: 10vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2.5vh;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  position: fixed;
  left: 0;
  top: 0;
  padding: 10px;
}

.title{
  font-size: 250%;
  margin-bottom: 2.5vh;
  font-family: "grenadine-mvb", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.buttons_sidebar a {
  display: block;
  background-color: #5a5252;
  color: white;
  text-decoration: none;
  padding: 1vh;
  margin: 1vh 0;
  border-radius: 20px;
  width: 80%;
  text-align: center;
  font-size: 1.5rem;
}

.buttons_sidebar a:hover {
  background-color: #453d3d;
}

.buttons_sidebar img {
  width: 7.5vw;
  height: auto;
  max-height: 15vh;
  border-radius: 50%;
  padding: 15px;
}

.Lamp {
  margin-bottom: auto;
}

.Contact {
  max-width: 14vh;
  bottom: 1vh;
  position: absolute;
  margin: auto;
}

main {
  margin-left: 12vw;
  padding-right: 2.5vw;
  flex: 1;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.backgroundbutton, .backgroundbutton2 {
  padding: 2rem;
  background-color: #959191;
  border-radius: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 2rem;
  width: calc(100% - 4rem);
  max-height: 17.5rem;
}

.insidebutton {
  width:90%;
  max-height: 20vh;
  background-color: #574e4e;
  border-radius: 1.5rem;
  margin: 0rem;
  text-align: center;
  color: white;
}

.backgroundbutton2 {
  flex-direction: row;
  gap: 2rem;
  flex-wrap: nowrap;
  justify-content: space-between;
  min-height: 60vh;
  max-height: 100vh;
}

#momenteel, #komende-dagen {
  width: 48%;
}

#titel-momenteel, #titel-komende {
  font-size: clamp(1.5rem, 4vw, 5rem);
  margin: 2rem;
  text-align: center;
  background: #574E4E;
  color: white;
  padding: 2rem;
  border-radius: 20px;
}

#temp-momenteel, #temp-komende-dagen {
  color: white;
  display: flex;
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
  flex-wrap: nowrap;
}

#buiten-temp, #binnen-temp, #dag-1,#dag-2,#dag-3,#dag-4,#dag-5{
  width: 48%;
  background: #574E4E;
  text-align: center;
  font-size: 275%;
  border-radius: 2rem;
}

#titel-temperaturen {
  font-size: clamp(2rem, 5vw, 7.5rem);
}

@media (max-width: 768px) {
  main {
    margin-left: 20vw;
  }
}