/* SCSS Document */
body {
  background-color: rgb(103, 120, 212);
}

h1 {
  font-family: "Silkscreen", cursive;
  background-color: aqua;
  color: blueviolet;
}

h2, h3 {
  color: aqua;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
}

a {
  transition-duration: 2s;
  font-size: normal;
}

nav {
  border: 10px outset goldenrod;
  background-color: black;
  border-radius: 0.75%;
  margin: 10px;
  padding: 5px;
  width: 100%;
  height: auto;
}

nav a:hover {
  background-color: #9705ff;
  color: #00ffff;
  font-size: larger;
  font-weight: bold;
}

.container, [class^=col-] {
  outline: 15px solid #ccc;
  padding: 15px;
  background-color: #26063d;
  text-align: center;
}

video, iframe {
  border-style: outset;
  border-color: silver;
  border-width: 10px;
  padding: 0px;
}

p, li {
  font-family: roboto;
  font-size: 18px;
  color: white;
}

p {
  margin-left: 10px;
  margin-right: 10px;
}

h2 + p {
  text-align: left;
}

ol li {
  text-align: left;
  margin-left: 80px;
  margin-right: 80px;
}

ul li {
  text-align: left;
  margin-left: 10px;
  margin-right: 10px;
}/*# sourceMappingURL=assignment2.css.map */