* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

body {
  height: 100vh;
  width: 100%;
  /* background-color: #dbf6f9; */
  background-image: url(../img/body-img.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.welcome-box {
  height: 500px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-logo{
  display: none;
}

h1 {
  color: #f05454;
  margin-bottom: 10px;
  text-align: center;
}

a {
  text-decoration: none;
}

.btn-wizard {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 30px 80px;
  margin: 1rem auto;
  text-transform: uppercase;
  border: 3px solid #f05454;
  color: #f05454;
  transition: 0.35s ease-out;
}

.btn-wizard span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #f05454;
  -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.btn-wizard:hover {
  color: #ffffff;
}
.btn-wizard:hover span {
  width: 225%;
  height: 562.5px;
}
.btn-wizard:active {
  background-color: #f05454;
}

.text-white{
  color: white;
}

.fwb{
  font-weight: normal;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 780px) {
  .welcome-box {
    width: 80%;
  }

  .welcome-box h1 {
    font-size: 28px;
    text-align: center;
  }

  [class^="btn-"] {
    padding: 15px 40px;
  }

  .mobile-logo{
    display: block;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.377);
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
  }

  h1{
    margin-top: 240px;
  }
}
