@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

@font-face {
    font-family: "Roboto" sans-serif;
    font-weight: 400;
    src: local("Roboto") url("../fonts/Roboto-Regular.ttf") format("ttf");
  }

@font-face {
    font-family: "Zeniq Tech";
    font-weight: 400;
    font-style: normal;
    src: local("Zeniq Tech") url("../fonts/Zeniq Tech.ttf") format("ttf"), url("../fonts/Zeniq Tech.otf") format("otf"), url("../fonts/Zeniq Tech.woff")format("woff"), url("../fonts/Zeniq Tech.woff2") format("woff2");
  }

  .page {
    height: 100%;
  }

  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  a
   {
    text-decoration: none;
  }

  .page-body {
    min-height: 100%;
    margin: 0;
    background-color: #000000;
    background-image: url("../img/bg-image.jpg");
    background-repeat: no-repeat;
    background-position: center top;
  }

  .page-main {
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
  }

  .page-header {
    background-color: #1c1c1c;
  }

  .container {
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
  }

  .page-header__logo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-right: 40px;
  }

  .page-header__logo-text {
    font-size: 15px;
    font-family: "Zeniq Tech";
    line-height: 15px;
    font-weight: 400;
    color: #ffffff;
    margin-left: -36px;
  }

  .main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .main-nav__item {
    display: inline;
    font-family: "Roboto";
    font-size: 12px;
    line-height: 160%;
    font-weight: 400;
    color: #8D9297;
    margin-right: 32px;
  }

  .dropbtn {
    padding: 5px;
    cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  width: 75px;
}

.dropbtn {
  padding-left: 25px;
  width: 40px;
  font-family: "Roboto";
  font-weight: normal;
  color: #ffffff;
}


.dropdown-content a {
  width: 24px;
  color: #ffffff;
  padding: 2px 25px 2px 25px;
  font-family: "Roboto";
  font-weight: normal;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #1c1c1c
}

.dropdown:hover .dropdown-content {
  display: block;
}

  .page-title {
    font-size: 24px;
    font-family: "Roboto";
    text-align: center;
    font-weight: 400;
    line-height: 64px;
    margin-top: 240px;
    color: #ffffff;
    animation: title 2s 1;
  }

  @keyframes title {
    0% {
      margin-top: 280px;
    }
  }

  .page-title__special {
    font-size: 60px;
    font-family: "Zeniq Tech";
    color: #23F7DD;
    margin-top: 40px;
  }
  
  .page-main__description {
    font-family: "Roboto";
    font-size: 24px;
    text-align: center;
    line-height: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 80px;
  }

  .page-main__form {
    position: relative;
    margin-top: 80px;
    animation: form 2s 1;
  }

  @keyframes form {
    from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
  
  .page-form__input-email {
    font-family: "Roboto";
    width: 380px;
    height: 48px;
    border: none;
    padding-left: 16px;
    border-radius: 10px;
    background: #1c1c1c;
    margin-right: 24px;
    color: #ffffff;
  }

  .page-form__input-email:focus {
    outline: none !important;
    border: 1px solid #23F7DD;
    border-radius: 10px;
  }

  .page-form__input-email::placeholder {
    font-size: 16px;
    color: #8D9297;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .page-form__button {
    display: inline-flex;
    font-size: 18px;
    text-transform: uppercase;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    padding: 16px;
    min-width: 176px;
    height: 48px;
    justify-content: center;
    border: none;
    border-radius: 10px;
    background-color: #23F7DD;
  }

  .page-main__message {
    position: relative;
    transform: translate(-50% -50%);
    animation: message 2s 1;
  }
  
  @keyframes message {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  } 