* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background-color: #f0f0f0;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.icon svg {
  width: 50dvh;
  height: 50dvh;
  margin: auto;
}
.icon svg path:not(#house) {
  visibility: hidden;
}
.icon svg path {
  fill: black;
}

form label {
  display: block;
  padding: 1em;
  border-radius: 1em;
  color: white;
  background-color: grey;
  cursor: pointer;
  transition: all 0.25s ease;
}
form label:has(input:checked) {
  background-color: black;
}
form label input {
  display: none;
}
form label + label {
  margin-top: 1em;
}/*# sourceMappingURL=style.css.map */