html {
  font-family: brandon-grotesque, sans-serif;
  color: #1f2532;
}
body {
  margin: 0;
  padding: 0;
}
p {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
    padding: 0 8px;
  }
}

.logo {
  position: fixed;
  top: 50px;
  width: 180px;
  left: 50%;
  transform: translateX(-50%);
}

main {
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.content-block {
  width: 100%;
  max-width: 600px;
  text-align: center;
  transform: translateY(-100px);
}

.content-block__img {
  width: 96px;
}

@media screen and (max-width: 768px) {
  .content-block__img {
    width: 64px;
  }
}

.content-block__social {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.content-block__social img {
  width: 40px;
  height: 40px;
}

a {
  text-decoration: none;
}

footer {
  position: fixed;
  bottom: 0;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #1f2532;
  color: #fff;
  text-align: center;
}

footer a {
  color: white;
  font-size: 20px;
}
