@font-face {
  font-family: 'Mooli';
  font-style: NORMAL;
  font-weight: 400;
  src: url("/fonts/mooli.ttf");
}

@font-face{
 font-family: 'love';
 src: url("/fonts/love-vale.ttf");
}

@font-face{
  font-family: 'huglove';
  src: url("/fonts/Huglove.ttf");
}

*{
  box-sizing: border-box;

}

body{
  height: 100%; 
  background-image: url('/images/hearts6.jpg');
  background-color: lavender;
  font-family: "Mooli";
  cursor:url(/images/luxury-ball.cur),auto; 
}

::selection {
  color: black;
  background-color: lavender;
} 

#page {
  display: grid;
  width: 100%;
  height: auto;
  grid-template-areas:
    "side head"
    "side main"
    "side foot";
  grid-template-rows: 180px 1fr 50px;
  grid-template-columns: 190px 1fr;
  padding: 0;
  margin: 0;
}

#page > header {
  grid-area: head;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row-reverse;
}

.pagetitle{
  font-family: "love";
  font-size: 3.5rem;
  order: 2;
  padding: 30px 15px 0 0;
}

.pagedisc{
  height: 200px;
  order: 1;
  z-index: 1;
}

.pagecover{
  height:250px;
  order:1;
  z-index: 1;
}

#page > aside {
  grid-area: side;
  background-color: #fffefc;
  padding: 0;
  margin: 0;
  text-align: center;
}

.navlinks {
  width: 190px; 
  height: 330px; 
  border: none;
  position: sticky;
  display: block;
  cursor:url(/images/luxury-ball.cur),auto;  
}

.navtitle {
font-family: "Mooli";
color: purple;
}

.avatar{
  width: 100px;
  height: 100px;
}

#page > main {
  grid-area: main;
  padding: 0 0 0 10px;
  margin: 0;
}


#page > footer {
  grid-area: foot;
  padding: 0;
  margin: 0;
}

.attribution {
  font-size: 0.9rem;
  font-style: italic;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 100 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: black;
  top: 0;
  bottom: 0;
  left: 49.7%;

}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid black;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left{
  left: 0;
}

.right{
  left:50%;
}
/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid black;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent black;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid black;
  border-width: 10px 10px 10px 0;
  border-color: transparent black transparent transparent;
}
/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: lavender;
  position: relative;
  border-radius: 10px;
  border-color: black;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 1px;
    margin-left: 1px;
  }

/* Full-width containers */
  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 60px;
    border: medium solid black;
    border-width: 10px 10px 10px 0;
    border-color: transparent black transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}