*,
*::before,
*::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #000;
}

.container {
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 15px;
}

.header {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
}

.nav__logo {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
}

.nav__logo>span {
  font-size: 32px;
  font-weight: 300;
  opacity: .7;
}

.nav__items {
  align-items: center;
  width: 70%;
  max-width: 380px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav__item {
  text-decoration: none;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.1s linear;
  color: #000;
}

.nav__item:active,
.nav__item:hover {
    opacity: .7;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title {
    font-size: 32px;
    font-weight: 300;
    margin-top: 40px;
    text-transform: uppercase;
}

.subtitle {
    text-align: center;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 500;
    opacity: .5;
}

.attention {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
    opacity: .7;
}

.attention__wrapper {
    margin-bottom: 20px;
}

.block {
    margin-top: 20px;
    margin-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;

    padding: 20px;
    background-color: #fff;

    /* offset-x | offset-y | blur-radius | color */
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);

    border-radius: 16px;
}

.server__info {
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
}

.btn {
    font-size: 16px;
    font-weight: 700;
    padding: 8px 16px;
    text-transform: uppercase;
    background-image: url(../img/btn-bg.png);
    background-position: center center;
    border-radius: 16px;
    transition: .2s linear;

    color: #fff;
    /* background-color: #000; */
}

.btn:hover {
    box-shadow: #000000 0 0px 0px 40px inset;
}

.buy--btn {
    margin-left: 20px;
}

.footer {
  width: 100%;
  height: auto;
  margin-top: 100px;
  padding: 50px;

  /* background-color: #ebebeb;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05); */
}

.footer__text {
  color: #000;
  opacity: .8;
}