:root {
  --base-column-width: 650px;
  --column-width: calc(min(var(--base-column-width), 90vw));

  --auto-red: #d0716f;
  --auto-green: #63824b;
  --auto-cyan: #579aa8;
  --auto-blue: #716593;
  --auto-purple: #aa5da4;
  --auto-black: #333;
}

body{
    margin: 40px auto;
    max-width: var(--column-width);
    min-width: 300px;
    line-height: 1.6;
    font-size: 18px;
    color: var(--auto-black);
    padding: 0 10px;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-family: 'Inter';
}

p {
    font-family: 'Inter';
}

.dl-button {
  border: 1px solid #b5b5b5;
  aspect-ratio: 1;
  padding: 2px;
  border-radius: 10px;
  width: auto;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon {
  height: 57px;
}

#dl-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#dl-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-content: center;
  width: calc(min(var(--base-column-width) - 200px, var(--column-width)));
  margin-top: 20px;
}

#dl-row a {
  color: inherit;
  text-decoration: inherit;
}

.dl-button:hover {
  background-color: #eee;
}

#learn-link {
  padding-top: 26px;
  color: #444;
}