html,
body {
  height: 100%;
}

body {
  background-color: #884c9c;
}

h2 {
  text-align: center;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 1rem;
  height: 100%;
}
.spread {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  height: 95%;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  width: 100%;
  display: flex;
  justify-content: start;
}

.auth {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.button_hero {
  margin-top: 2rem;
  max-width: 300px;
  color: #fff;
  background-color: #e63246;
}
.button_hero:hover {
  color: #e63246;
  background-color: #fff;
  border: #e63246 1px solid;
}
.block {
  width: 100%;
  padding: 3.5rem 8rem;
}

.links {
  text-align: center;
}

.link_list {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

#gos {
  background-image: url(/public/gosuslugi.svg);
  background-repeat: no-repeat;
  background-position: 50% 60%;
  background-size: 8rem;
  background-color: white;
  width: 100%;
  min-height: 3.5rem;
}

#gos:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .block {
    width: 100%;
    padding: 4rem;
  }
}
@media screen and (max-width: 1000px) {
  .block {
    width: 90%;
    padding: 4rem;
  }
  .auth,
  .links {
    margin-top: 0;
  }
  .link_list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
