body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #f5f5f5;
}


.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;   
  padding-top: 80px;         
}

.house {
  width: 600px;   
  max-width: 90%; 
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.house:hover {
  transform: scale(1.05);
}

.quote {
  font-size: 40px;
  color: #333;
  margin: 10px 0;

  white-space: nowrap;   
}

body {
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.button {
  margin-top: 5px;
  text-decoration: none;
  color: #555;
  border: 1px solid #555;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; 
}

.button:hover {
  background-color: #555;
  color: white;
}