html,
body {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  font-family: Rubik, Arial, sans-serif;
  background-color: #4C4096;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-y: auto;
  color: #fafdff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
}

.container {
  display: flex;
  padding: 48px 32px;
  flex-direction: column;
  align-items: center;
  align-self: center;

  @media only screen and (max-width: 900px) {
    padding: 32px 16px;
  }
}

.content {
  display: flex;
  max-width: 1240px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;

  @media only screen and (max-width: 900px) {
    align-items: flex-start;
  }
}

.logo-wrapper > img {
  width: 160px;
  height: 58px;
}

.header {
  display: flex;
  padding: 48px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;

  @media only screen and (max-width: 900px) {
    align-items: flex-start;
    padding: 32px 0;
  }
}

.heading {
  margin: 0;
  text-shadow: 0 1px 2px rgba(4, 4, 26, 0.24);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.4px;
  text-transform: uppercase;

  @media only screen and (max-width: 900px) {
    font-size: 24px;
    line-height: 28px;
  }
}

.subheading {
  margin: 0;
  text-shadow: 0 1px 2px rgba(4, 4, 26, 0.24);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.4px;
  text-transform: uppercase;

  @media only screen and (max-width: 900px) {
    font-size: 16px;
    line-height: 24px;
  }
}

.list-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.mirror-links-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 16px;
  background: rgba(4, 4, 26, 0.64);
  box-shadow:
    0 0 0 1px rgba(154, 169, 184, 0.24),
    0 8px 32px 0 rgba(4, 4, 26, 0.24);
}

.list-header {
  display: flex;
  font-weight: 700;
  padding: 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.divider {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  height: 1px;
  background: rgba(187, 187, 187, 0.16);
}

.list-item {
  display: flex;
  padding: 16px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 4px;
  color: #9aa9b8;
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  border-bottom: 1px solid rgba(187, 187, 187, 0.16);
}

.list-item:hover {
  background-color: rgba(154, 169, 184, 0.08);
}

.hidden {
  display: none;
}
