@charset "UTF-8";
/*Font*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
/*Style css*/
body {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

.welcome-page img {
  height: 300px;
  margin-top: 5%;
}

.welcome-page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.welcome-page h1 {
  color: #34304E;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 3rem;
  margin: 50px 0px 0px 0px;
  text-align: center;
}

span {
  color: #6795FF;
}

.welcome-page p {
  color: #34304E;
  font-size: 1.1rem;
  width: 100%;
  text-align: center;
  margin: 5px;
  font-weight: 600;
}

.welcome-page a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  font-weight: 700;
  margin: 20px;
  background-color: #31C1FF;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  font-size: 1rem;
}

a:hover {
  background-color: #6795FF;
  transition: all ease 0.2s;
}

@media(max-width:768px) {
  .welcome-page br {
    display: none;
  }

  .welcome-page img {
    height: 240px;
  }

  .welcome-page p {
    width: 80%;
  }
}

@media(max-width:375px) {
  .welcome-page h1 {
    line-height: 100%;
    font-size: 2rem;
  }
  .welcome-page p{
    font-size: 0.7rem;
  }
  .welcome-page img{
    height: 200px;
    
  }
}