
body {
    font-family: "DM+Mono", monospace;
    background-image: url(https://copacetic-lapidary.neocities.org/images/bg_002.png);
}

/* id styling */

#content {
    width: 600px;
}

#website {
  max-width: 800px;
}

#navigation {
  max-width: 600px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  border-bottom: 2px dotted;
  padding-bottom: 10px;
}

#hobbies {
  display: flex;
  flex-direction: column;
  
}
/* Class styling */ 

.callout {
    padding-left: 30px;
}

.notes {
  border: 2px solid black;
  padding: 10px;
  max-width: 200px;
}

.hobbies { 
  display: flex;
  align-items: center; 
  max-width: 800px;
  margin-top: 15px;
  margin-left: 10px;
  padding-bottom: 15px;
  border-bottom: 1px dashed grey;
}

.hobbiestext { 
  margin-left: 20px; 
  margin-top: 0;
}

.more {
  display: flex;
  justify-content: flex-end;
}

/* Link adjustments */

a:link {
  color:tomato;
  text-decoration:none;
}

a:hover {
  color: rgb(154, 185, 16);
  font-style: italic;
}

a:visited {
  color:rgb(10, 156, 156);
}