
/* 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;
}

* {
  box-sizing: border-box;
}

body {
  background: #ffe6ef;
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: #b85c8e;
}

.page {
  width: 700px;
  margin: 40px auto;
  display: flex;
  gap: 15px;
}

/* reusable box style */
.box {
  background: #fff0f6;
  border: 2px solid #f4b6cf;
  padding: 10px;
  margin-bottom: 10px;
}

/* LEFT */
.sidebar {
  width: 440px;
}

.nav a {
  display: block;
  text-align: center;
  margin: 4px 0;
  padding: 4px;
  background: #ffd6e7;
  color: #b85c8e;
  text-decoration: none;
  border: 1px solid #f4b6cf;
}
.collapsible {
  display: block;
  background-color:  #ffd6e7;
  color: #b85c8e;
  cursor: pointer;
  padding: 10px;
  width: 100%;  
  border: 1px solid #f4b6cf;;
  text-align: center;
  outline: none;
  font-size: 18px;
  margin: 4px 0;
  .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
  }
}



/* RIGHT */
.content {
  width: 480px;
}

.main h2 {
  text-align: center;
}

.footer img {
  width: 30%;
}



