@import url("variables.css");
@import url("typography.css");

body {
  background:#fffdf5;
  align-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary-text-color);
  line-height: 1.25;
  width: 80%;
  min-width: 30rem;
  max-width: 80rem;
  margin: 0 auto;
}


#logo {
  margin-top: 20px;
  max-width: 40em;
  width: 90%;
}

.subtitle {
  font-size: 1.4rem;
}

.bottomlinks {
  display: flex;
  gap: 15px;
}

.subtitle, .bottomlinks {
    font-family: 'Darumadrop One';
    font-weight: normal;
    font-style: normal;
}

.notice {
  margin: 40px 0 40px 0;
  max-width: 30em;
  border: 5px solid var(--primary-text-color);
  border-radius: 10px;
  padding: 5px;
  background-color: white;
  font-family: Vollkorn;
}

.eu-link:link, .eu-link:visited {
  color: var(--eu-color);
}

nav {
  margin: 0.5em 0;
}

 nav a:link {
  color: var(--primary-text-color);
  text-decoration: none;
}

section.features {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, 30em);
  grid-auto-flow: dense;
  max-width: 100%;
  justify-content: center;
}

.featurebox {
  border: 5px solid var(--primary-text-color);
  background: #ffffff;
  border-radius: 5px;
  min-width: 25em;
  padding: 0 0.5em
}
