body{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.page{
  height: 100%;
  width: 100%;
  background: url("../img/imgonline-com-ua-Resize-zwOsGomHlqyFDH.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.blur{
  background: linear-gradient(106.83deg, #52AABE 4.55%, rgba(50, 105, 126, 0.87) 42.61%, rgba(19, 40, 62, 0.87) 100%);
  backdrop-filter: blur(4px);
  height: 100%;
  width: 100%;
}

.background{
  background: linear-gradient(180deg, rgba(65, 174, 205, 0.19) 0%, rgba(0, 0, 0, 0) 100%);
  filter: drop-shadow(0px 4px 4px rgba(121, 201, 221, 0.11));
  backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
}

.main{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo{
  width: 161px;
  height: 97px;
  padding: 50px 50px 0;
}

.title{
  text-align: center;
  font-family: "Arial", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 4vw;
  line-height: 173.3%;
  /* or 125px */

  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: #FFFFFF;
  margin: 0;
}

.title-blue{
  color: #41aecd;
}

.footer{
  text-align: end;
  padding: 0 50px 50px;
}

.hello{
  font-family: "Arial", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 4vw;
  color: #FFFFFF;
}

.contacts{
  font-family: "Arial", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 2vw;
  line-height: 44px;
  /* identical to box height */
  color: #FFFFFF;
}

.mail{
  display: block;
  color: white;
  text-decoration: none;
}

@media (max-width: 600px) {
  .logo{
    padding: 35px;
    width: 96px;
    height: 58px;
  }

  .title{
    padding: 0 23px;
    font-size: 22px;
    line-height: 173.3%;
    /* or 42px */
  }

  .hello{
    font-size: 24px;
    line-height: 33px;
  }

  .contacts{
    font-size: 18px;
    line-height: 25px;
  }

  .footer{
    padding: 0 23px 35px;
  }
}

@media (max-width: 365px) {
  .title, .hello{
    font-size: 18px;
  }
  .contacts{
    font-size: 16px;
  }
}