@import "fonts.css";
@import "colors.css";

body {
  background-color: var(--bg-color-1);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.container {
  max-width: 16rem;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

h1 {
  font-size: 1.5rem;
}

.link-container {
  a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    min-height: 2.5rem;
    margin-bottom: 1rem;

    &:hover {
      opacity: .9;
    }
  }

  span {
    font-size: 1rem;
    text-transform: uppercase;
  }

  img {
    width: 2rem;
  }
}

.line-break {
  border-bottom: 1px solid var(--white);
  margin: 2rem 0;
}

footer {
  p {
    font-size: .8rem;
  }
}