* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  margin: 0;
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
    "Arial", sans-serif;
}

h2 {
  color: grey;
  font-weight: normal;
  padding: 20px;
}
p {
  padding: 20px;
}

.items > .box {
  background-color: #f1f1f1;
  color: #6c6c6c;
  margin: 10px;
  padding: 1em 1em;
}

.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.header img {
  max-width: 100%;
}

.header h3 {
  margin-bottom: 5px;
}

.box span:not(.mdi) {
  display: block;
  opacity: 0.7;
  margin-bottom: 15px;
}

.links {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.links a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 10px 0px;
  transform-origin: left center;
  transition: transform 250ms ease-in-out;
}

.links a:hover {
  transform: scale(1.1);
}

@media (prefers-color-scheme: dark) {
  .dark {
    display: block;
  }

  .light {
    display: none;
  }

  .header {
    border-bottom: 1px solid #262626;
  }

  .items > .box {
    background-color: #181818;
    color: #c3c3c3;
  }

  .links a {
    color: white;
  }
}

.wrapper {
  position: relative;
}

.back {
  color: white;
  font-size: 40px;
}
