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

body {
  background-color: #b5eba2;
  display: grid;
  place-items: center;
  height: 100vh;
}

.house {
  position: relative;
  width: 700px;
  height: 350px;
  border-bottom: 8px solid #175117;
}

.main {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: #fff;
}

.main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
}

.roof {
  position: absolute;
  top: -100px;
  height: 100px;
  width: 100%;
}

.roof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: #257582;
  transform: skewX(330deg);
}

.roof::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: #257582;
  transform: skewX(30deg);
}

.front::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -64px;
  transform: translateX(-50%) rotate(45deg);
  width: 126px;
  height: 126px;
  background: #f1f1f1;
  border-top: 4px solid #222;
  border-left: 4px solid #222;
}

.front::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
  background: #333;
  background-image: linear-gradient(
      to right,
      transparent 10%,
      transparent 90%,
      #333 90%
    ),
    linear-gradient(to bottom, transparent 10%, #6d6d7d 10%, #6d6d7d 90%);

  background-size: 10px 15px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border: 4px solid #333;
}

.front {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background: #f1f1f1;
}

.door {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 80px;
  background: #4d2418;
  transform: translateX(-50%);
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.door::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -45px;
  width: 30px;
  height: 30px;
  background: #333;
  background-image: linear-gradient(
      to right,
      transparent 10%,
      transparent 90%,
      #333 90%
    ),
    linear-gradient(to bottom, transparent 10%, #6d6d7d 10%, #6d6d7d 90%);

  background-size: 10px 10px;
  border: 2px solid #333;
  border-top: 5px solid #333;
  border-bottom: 5px solid #333;
}

.door::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -45px;
  width: 30px;
  height: 30px;
  background: #333;
  background-image: linear-gradient(
      to right,
      transparent 10%,
      transparent 90%,
      #333 90%
    ),
    linear-gradient(to bottom, transparent 10%, #6d6d7d 10%, #6d6d7d 90%);
  background-size: 10px 10px;
  border: 2px solid #333;
  border-top: 5px solid #333;
  border-bottom: 5px solid #333;
}

.line {
  position: absolute;
  top: 38%;
  width: 100%;
  height: 12px;
  border-top: 4px solid #257582;
  border-bottom: 4px solid #257582;
}

.adjust {
  top: 45%;
}

.window-right {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 60px;
  height: 50px;
  background: #333;
  background-image: linear-gradient(
      to right,
      transparent 10%,
      transparent 90%,
      #333 90%
    ),
    linear-gradient(to bottom, transparent 10%, #6d6d7d 10%, #6d6d7d 90%);
  background-size: 10px 10px;
  border-top: 5px solid #333;
  border-bottom: 5px solid #333;
}

.window-right::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 60px;
  top: 90px;
  background: #333;
  background-image: linear-gradient(
      to right,
      transparent 10%,
      transparent 90%,
      #333 90%
    ),
    linear-gradient(to bottom, transparent 10%, #6d6d7d 10%, #6d6d7d 90%);
  background-size: 10px 10px;
  border-bottom: 5px solid #333;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.window-left {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 60px;
  height: 50px;
  background: #333;
  background-image: linear-gradient(
      to right,
      transparent 10%,
      transparent 90%,
      #333 90%
    ),
    linear-gradient(to bottom, transparent 10%, #6d6d7d 10%, #6d6d7d 90%);
  background-size: 10px 10px;
  border-top: 5px solid #333;
  border-bottom: 5px solid #333;
}

.window-left::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 60px;
  top: 90px;
  background: #333;
  background-image: linear-gradient(
      to right,
      transparent 10%,
      transparent 90%,
      #333 90%
    ),
    linear-gradient(to bottom, transparent 10%, #6d6d7d 10%, #6d6d7d 90%);
  background-size: 10px 10px;
  border-bottom: 5px solid #333;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.side {
  position: absolute;
  bottom: 0;
  left: -120px;
  width: 140px;
  height: 140px;
  background: #f1f1f1;
}

.side::before {
  content: "";
  position: absolute;
  top: -52px;
  left: 50%;
  width: 100px;
  height: 100px;
  background: #f1f1f1;
  transform: translateX(-50%) rotate(45deg);
  border-top: 4px solid #222;
  border-left: 4px solid #222;
}

.side::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 40px;
  background: #333;
  background-image: linear-gradient(
      to right,
      transparent 10%,
      transparent 90%,
      #333 90%
    ),
    linear-gradient(to bottom, transparent 10%, #6d6d7d 10%, #6d6d7d 90%);
  background-size: 10px 10px;
  border-bottom: 5px solid #333;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.side .line {
  transform: translateY(-16px);
}

.windows {
  position: absolute;
  top: 60px;
  left: 32px;
  width: 80px;
  height: 70px;
  background: #333;
  background-image: linear-gradient(
      to right,
      transparent 10%,
      transparent 90%,
      #333 90%
    ),
    linear-gradient(to bottom, transparent 10%, #6d6d7d 10%, #6d6d7d 90%);
  background-size: 10px 10px;
  border-top: 5px solid #333;
  border-bottom: 5px solid #333;
}

.tree {
  position: absolute;
  top: -10px;
  right: -100px;
  width: 120px;
  height: 120px;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background: #94ab38;
  transform: rotate(315deg);
}

.tree::before {
  content: "";
  position: absolute;
  top: 85px;
  left: -20px;
  width: 10px;
  height: 100px;
  transform: rotate(45deg);

  background: #3c2703;
}

.tree2 {
  top: -50px;
  right: -70px;
  background: #7ba21f;
  transform: rotate(315deg) scale(1.25);
}

.title {
  margin: 0;
  position: absolute;
  z-index: 555;
  top: 100px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-shadow: 2px 10px 10px rgba(0, 0, 0, 0.3);
}
