* {
  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 g:not(#terraced-house) {
  visibility: hidden;
}
.icon svg path {
  fill: black;
}

.end {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  justify-content: end;
}
.end button {
  padding: 0.75rem 1.5rem;
  border: 2px solid #333;
  background: white;
  color: #333;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.end button:hover {
  background: #333;
  color: white;
}
.end button.active {
  background: #333;
  color: white;
  font-weight: 600;
}
.end button:disabled, .end button.hidden {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.hidden {
  opacity: 0.3 !important;
  pointer-events: none !important;
}

/*# sourceMappingURL=style.css.map */
