@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
  margin: 0;
}

body {
  font-family: "Istok Web", sans-serif;
  font-size: 20px;
  background: url(./bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  color: #fff;
  position: relative;
}

.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 50px;
  position: absolute;
  bottom: 30px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 0;
}

.menu li a {
  text-decoration: none;
  color: #92B5DC;
  font-weight: 500;
  font-size: 28px;
}

.menu li a:hover {
  border-bottom: 3px solid #92B5DC;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 20px 20px 0;
  height: 100vh;
  text-align: center;
}

.content h1 {
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 500;
}

.content img {
  width: 300px;
}

.content p span {
  font-weight: 600;
  color: #92B5DC;
}

.content-privacy {
  max-width: 1280px;
  padding: 50px 20px;
  margin: 0 auto;
}

.content-privacy h2 {
  margin-bottom: 30px;
  font-size: 34px;
}

.content-privacy h3 {
  margin: 50px 0 10px;
  font-size: 26px;
  font-weight: 500;
}

.menu-privacy {
  padding-top: 30px;
  position: relative;
}

.text {
  max-width: 1000px;
}

@media screen and (max-width: 1000px) {
  .content {
    height: auto;
  }
  .menu {
    position: relative;
    margin-top: 50px;
  }
  body {
    background-position: left;
  }
}