* {
  box-sizing: border-box; /* Target content, padding and border to be included in total width and height */
}

/* Basic styles */
body {
  font-family: "Roboto", sans-serif;
  font-size: calc(12px + (18 - 12) * (100vw - 400px) / (1200 - 400)); /* Mathias - font size based on the window size */
  line-height: 1.2;
  color: #333;
  min-height: 100vh -5;  /* Mathias - Use almost the full height if the viewport */
  margin: 0;
}

/* Navigation */
.site-header {
  display: flex;
  justify-content: space-between; /* Puts items to left and right */
  align-items: center;
  padding: 0.7rem 1rem;  /* top&Bottom  Left&Right */
  background: #2ddf5c;
}
.svg-container {
  padding: 0;
  /* vertical-align: middle; */
  /* overflow: hidden; */
  border: 1px dashed #aaa;
  /* width: 125%; */
}
.svg-content {
  /* display: inline-block; */
  vertical-align: middle;
  margin: 10px 0 10px 0;
}
.main-nav__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6rem;
}
.main-nav__item a {
  padding: 0.4rem;
  border-radius: 0.25rem;
  text-decoration: none;
  /* color: tomato; */
  font-weight: 400;
}
.main-nav__item a:hover {
  color: #fff;
}
.main-nav__items li.active a {
  color: #fff;
  background-color: tomato;
}
.footer p {
  font-size: 65%;
}

/* Make the first letter bigger */
/* .main-nav__item a {
  display: inline-block;
}
.main-nav__item a::first-letter {
  font-size:120%;
} */
