:root {
  --gold: #8a7459;
  --black: #000000;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
  font-family: 'Poppins', sans-serif;
}
body {
  background-color: var(--gold);
  padding: 0;
  margin: 0;
  height: 100vh;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 75%;
  margin: 0 auto;
  gap: 10rem;
}

.wrapper .logo {
  display: flex;
  justify-content: center;
}

.wrapper .logo > img {
  max-width: 250px;
}

.wrapper .info {
  position: fixed;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 75%;
}

.wrapper .info .address {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.wrapper .info .contacts {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: right;
}

.wrapper .info .contacts,
.wrapper .info .address {
  width: 350px;
}

.wrapper .info .social-links img {
  max-width: 32px;
}

p {
  line-height: 10px;
}

a {
  color: var(--black);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .wrapper .logo {
    padding-bottom: 10rem;
  }

  .wrapper .info {
    flex-direction: column;
    align-items: unset;
    gap: 1rem;
    left: 1rem;
    width: 90%;
  }

  .wrapper .info .contacts {
    text-align: left;
    line-height: 1;
  }

  .wrapper .info .address {
    line-height: 1;
  }
  .wrapper .info .social-links {
    position: fixed;
    right: 1rem;
    top: 1rem;
  }
}
