body {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  color: #403E3A;
}

.main {
  min-height: 100vh;
  background: linear-gradient(
    109.12deg,
    #fdd49a 0%,
    #c8904f 25%,
    #cd7213 50%,
    #993d05 75%,
    #744f1d 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 2rem 1rem;
  margin: .5rem;
  border-radius: .5rem;
  background: linear-gradient(
    to right,
    #F7F6F5 0%,
    rgba(255,255,255, .6) 51%,
    #F7F6F5 100%
  );
  background-size: 200% auto;
  transition: .2s;
}

.container:hover {
  background-position: 100%;
}

.logo {
  width: 100%;
}

.text-description {
  text-align: center;
  margin-top: 2rem;
}

.contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  margin-top: 1rem;
  width: 100%;
}

.contacts a {
  text-decoration: none;
  color: inherit;
  padding: .7rem .3rem;
  width: 100%;
  text-align: center;
  border-radius: .3rem;
  display: flex;
  gap: .5rem;
  justify-content: center;
  align-items: center;
}

.contacts a:hover {
  background-color: rgba(0,0,0,.1);
}

.contacts .bi {
  font-size: 1.5rem;
}

.contacts .socials {
  display: flex;
  gap: 2rem;
}

.contacts .socials .bi {
  font-size: 3rem;
}

.contacts iframe {
  border-radius: .3rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 400px;
}
