/* A link that has not been visited */
.main-text a:link {
  color: black;
  text-decoration: underline;
}

/* A link that has been visited */
.main-text a:visited {
  color: black;
}
/* A link that is hovered on */
.main-text a:hover {
  color: blue;
}
/* A link that is selected */
.main-text a:active {
  color: green;
}

.navbar {
  list-style-type: none;
}

.logo {
  margin-top: 50px;
  margin-bottom: 0px;
  padding-top: 40px;
  padding-bottom: 10px;
}

.copyright-text {
  font-size: 12px;
  color: #fff;
  padding: 10px 10px;
}