.title {
    font-size: xx-large;
    text-decoration: underline;
}
body {
  background-color: black;
  color: white;
  text-align: center;
  margin-top: 10px;
  margin-left: 0px;
  font-family: 'Cormorant Garamond';
}
.intro {
    border-style: double;
    font-size: large;
}

.nav {
    display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    

}
.list {
    border: solid white 1px;
    padding: 50px;
  margin: 20px;
}
.blog{
    border: solid white 1px;
    padding: 25px;
    margin: 20px;
    font-size: large;
}

a:link {
  color: white;
}


a:visited {
  color: white;
}


a:hover {
  color: red;
}


a:active {
  color: blue;
}
summary {
    text-decoration: underline;
}
summary::marker { 
    content: "›"; 
}
details[open] summary::marker {
  content: "⤹";
}
blockquote {
  font: 14px/22px normal helvetica, sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 50px;
  padding-left: 15px;
  border-left: 3px solid #ccc;
} 
.tracker {
        border: solid white 1px;
    padding: 25px;
    margin: 20px;
    font-size: large;
}