/* we can use a single css file to style all the files in our wwebsite */

/* you can pick your own background colors, text colors, and fonts */

/* we can select an html element tag, in this case "body" will apply to the whole document */
body {
  background-color: #50808E;
  line-height: 1.5;
}

/* we can have rules apply to multiple elements at the same time with commas */
h1,h2,h3 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: black;
}

/* and we can have rules that overlap other rules, both take effect */
h1 {
  letter-spacing: 5px;
  word-spacing: 5px;
  font-size: 200%;
}

/* the hashtag in a CSS selector selects an element by id, e.g., id="content" */
#content {
  margin: 10px;
  padding: 10px;
  border: solid 2px #2f7299;
  background-color: #84B59F;
}

/* the period in a CSS selector selects an element by class, e.g., class="minor-section" */
.minor-section {
  padding: 10px;
  margin-bottom: 10px;
  border: solid 1px #50a0a0;
  background-color: #A3C9A8;
}

.random-gifs {
  width: 600px;
  height: auto;
  border: solid 1px #50a0a0;
}

#links ul {
  column-width: 600px;
  list-style: disc;
}

a {
  text-decoration: none;
  color: #1b7474;
  font-weight: bold;
}

#links a {
  font-size: 90%;
}