* {
  scrollbar-width: none;
}

.mainBody {
  height: 100vh;
  margin: 0px;
  padding: 0px;
  border: border-box;
  font-family: sans-serif;
  background-color: #FCE6E6;
  display: flex;
  justify-content: center;
  align-items: center;
}


.mainPart {
  /* background-color: blue; */
  height: 200px;
  width: 80%;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.construction {
  background-color: #EE0100;
  font-size: 40px;
  font-family: "Caveat Brush", cursive;
  color: #FCE6E6;
  /* font-weight: 700; */
}

.btn {
  background-color: #EE0100;
  border: none;
  border-radius: 1rem;
  height: 60px;
  width: 600px;
  color: #FCE6E6;
  font-size: 20px;
  font-weight: 100;
  box-shadow: 1px 1px 10px #EE0100;
  cursor: pointer;
  transition: 0.5s;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.btn:hover{
  box-shadow: 1px 1px 20px #EE0100;

}