@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-block-start: 70px;
}

body {
  font-family: "Oswald", sans-serif;
  height: 100%;
  display: flex;
  justify-content: center;
  color: white;
  flex-direction: column;
  background-color:black;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: blur(5px);
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

img, h1, h2, h3, h4, p, li, span {
  transition: all 0.2s;
}

p, a, li, span {
  font-weight: 400;
  line-height: 1.3;
}

p {
  font-size: 16px;
  word-break: break-word;
}

a:hover,
li:hover {
  color: #949494;
  cursor: pointer;
}

h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.3;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.3;
}

h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.3;
}

.button {
  color: white;
  width: 200px;
  padding: 10px;
  height: 25px;
  font-size: 18px;
  background: #e000ff;
  border-radius: 10px;
  display: block;
  /*-webkit-box-shadow: 4px 4px 43px -10px rgba(255, 0, 214, 0.2);*/
  /*-moz-box-shadow: 4px 4px 43px -10px rgba(255, 0, 214, 0.2);*/
  /*box-shadow: -1px -2px 43px 1px rgb(192 0 255);*/
}

.button:hover {
  box-shadow: -1px -2px 43px 1px rgb(192 0 255);
  color: white;
}

.home-block {
  margin: 0 auto;
  text-align: center;
  border: 1px solid #e000ff;
  border-radius: 10px;
  padding: 50px 30px 30px 30px;
  position: relative;
  max-width: 500px;
  backdrop-filter: blur(10px);
  background-image: linear-gradient(#b300d014, transparent, #e000ff30);
}

.home-block .button {
  margin: 0 auto;
}

.logo {
  width: 300px;
  margin-bottom: 15px;
  position: absolute;
  top: -72px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  filter: drop-shadow(0 0 20px #555);
}


/*---------------------------------------------------------------------*/
/*------------------------------- MEDIA ---------------------------------*/
/*---------------------------------------------------------------------*/

/*Устройства X-Large (большие настольные компьютеры, менее 1400 пикселей)*/
@media (max-width: 1399.98px) {

}

/*Устройства Large (настольные компьютеры, менее 1200 пикселей)*/
@media (max-width: 1199.98px) {

}

/* Устройства Medium (планшеты, менее 992 пикселей)*/
@media (max-width: 991.98px) {
  /* -------------------------- SETTING CSS  --------------------------------------*/
  /*--------------------------------------------------------------------------------*/
  h1 {
    text-align: center;
  }
}

/*Устройства Small (телефоны с горизонтальной ориентацией, менее 768 пикселей)*/
@media (max-width: 767.98px) {
  /* -------------------------- SETTING CSS  --------------------------------------*/
  /*--------------------------------------------------------------------------------*/
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 24px;
  }
}

/*Устройства X-Small (портретные телефоны, менее 576 пикселей)*/
@media (max-width: 575.98px) {
  .logo {
    width: 250px;
    top: -50px;
  }
}

@media (max-width: 390.98px) {

}

/*Устройства Small (телефоны, менее 320 пикселей)*/
@media (max-width: 320.0px) {

}
