/* Style the header with a grey background and some padding */
.header {
 overflow: hidden;
 background: linear-gradient(#fac3e4);
 padding: 10px 10px
}

/* Style the header links */
.header a {
  float: left;
  color:rgb(167, 82, 82);
  text-align: center;
  padding: 20px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
  font-family: 'Kosugi Maru', sans-serif;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
    object-fit: cover;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #bff5ffec;
  color: black;
  font-family: 'Kosugi Maru';
}

/* Style the active/current link*/
.header a.active {
  background-color:#fca7d3;
  color: rgb(221, 70, 163);
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}
body {
  margin: 0;
  background: radial-gradient(circle at top, #ffd9ec 0%, #ffb6dc 100%);
  font-family: 'Quicksand', 'Kosugi Maru', sans-serif;
}