* {
  top: 0;
  left: 0;
  margin: 0;
  font-family: "Catamaran";
  font-style: normal;
}

body {
  background-color: #eef1f4;
}
.welcome {
  margin: auto;
  margin-top: 25vh;
  width: 90%;
  height: 344px;
  background-color: #f6fbfa;
  border-radius: 50px;
  justify-content: center;
}

#welcome_word {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 59px;
  color: #000000;
  padding-top: 50px;
  margin-bottom: 35px;
}
.input {
  display: block;
  margin: auto;
  width: 281px;
  height: 46px;
  background: #dee2e6;
  border-radius: 10px;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
  margin-bottom: 50px;
  box-shadow: 0px 0px 8px 0.5px grey;
}
.button {
  display: block;
  margin: auto;
  background-color: rgba(33, 37, 41, 0.9);
  border-radius: 10px;
  width: 160px;
  height: 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 33px;
  color: #ced4da;
  transition: transform 1s;
}

.button:active,
.button:hover {
  transform: scale(1.2);
}
/*for desktop styling*/
@media only screen and (min-width: 600px) {
  #welcome_word {
    font-size: 40px;
  }

  .welcome {
    max-width: 500px;
  }
  .input {
    width: 340px;
    height: 50px;
    font-size: 24px;
  }
}
