@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
.ui-parent-div {
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  font-family: "Poppins";
  background-color: #003c43;
  align-items: center;
}
.ui-sub-parent-div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #135d66;
  flex-direction: column;
  width: 80%;
  height: 70vh;
  font-weight: 600;
  color: #e3fef7;
  border-radius: 50px;
}
.ui-sub-parent-div .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 20%;
}
.ui-sub-parent-div h1 {
  font-size: 3.5rem;
  color: #77b0aa;
}
.ui-paragraph {
  display: flex;
  border: 1px dotted #003c43;
  width: 50%;
  padding: 3%;
  font-size: 22px;
}
.ui-sub-parent-div .ui-Btn {
  width: 15%;
  height: 6vh;
  border-radius: 10px;
  border: 1px solid white;
  background-color: #77b0aa;
  color: #003c43;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
}
.ui-sub-parent-div .ui-Btn:hover {
  color: #77b0aa;
  background-color: #135d66;
}
