* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap");
.header {
  background-image: linear-gradient(
      90deg,
      rgb(18, 0, 119) 0%,
      rgba(14, 186, 216, 0.349) 40%,
      transparent 40%
    ),
    url(./real-estate-1875.jpg);
  background-size: cover;
  height: 90vh;
}
.navbar_link {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 30px;
}
.link {
  margin: 0 15px;
  font-size: 20px;
  font-family: sans-serif;
  font-weight: bold;
  cursor: pointer;
  color: rgb(0, 0, 0);
}
.home {
  background-color: #0091ea;
  padding: 10px;
  border-radius: 15px;
  margin-top: -10px;
  transition: 0.2s;
  color: aliceblue;
}
.home:hover {
  background-color: #146699;
}

.navbar_link {
  transition: all 0.3s;
}
.nav-link:hover {
  border-bottom: 3px solid rgb(126, 155, 185);
}

.text {
  width: 40%;
  height: 77vh;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
  font-family: 'Amatic SC', cursive;
  color: aliceblue;
}

.title {
  grid-row: 2/3;
  grid-column: 2/5;
  font-family: 'Amatic SC', cursive;
}

.info {
  grid-row: 3/5;
  grid-column: 2/6;
  color: aliceblue;
  font-family: 'Amatic SC', cursive;
}
.btn {
  grid-row: 5/6;
  grid-column: 3/4;
  align-self: center;
  background-color: #0091ea;
  color: aliceblue;
  border: none;
  padding: 15px;
  font-size: 15px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background-color: #146699;
}

