.logo {
  float: right;
  margin: 25px 10px 10px 20px;
}

h1 {
  font-family: Anta, sans-serif;
  font-size: 50px;
}

h2 {
  font-family: Anta, sans-serif;
  font-size: 35px;
}

h3 {
  font-family: Anta, sans-serif;
  font-size: 30px;
}

p {
  font-family:
    Space Mono,
    monospace;
  font-size: 15px;
}

body {
  background: url("images/background-tile.png");
}

header {
  border: solid 3px white;
  background-color: black;
  display: block;
  color: white;
  padding: 20px 20px;
  margin: 30px 230px 10px 230px;

}

aside {
  border: solid 3px white;
  display: inline-flex;
  float: left;
  background-color: black;
  width: 17%;
  padding: 25px;
  margin: 10px 20px 30px 230px;
  justify-content: center;
}

main {
  border: solid 3px white;
  display: grid;
  overflow-x: auto;
  position: right;
  background-color: black;
  color: white;
  padding: 25px 60px;
  margin: 20px 230px 20px 10px;
  word-wrap: break-word;
}

footer {
  background-color: black;
  border: solid 3px white;
  color: white;
  margin: 10px 230px 10px 230px;
  padding: 20px;
  display: grid;
}

footer p {
  text-align: right;
  font-size: 13px;
}

/* nav and dropdown menu */

nav {
  font-family: Tektur, serif;
  font-size: 20px;
  display: flex;
  letter-spacing: 5px;
  margin-top: 130px;
}

nav p {
  margin: 3px;
  cursor: none;
}

nav a {
  color: goldenrod;
  padding: 0px 20px;
  text-decoration: none;
}

nav a:hover {
  color: greenyellow;
}

.dropdown button {
  display: block;
  background-color: black;
  color: goldenrod;
  font-family: Tektur, serif;
  font-size: 20px;
  padding: 0px 15px;
  border: none;
  cursor: pointer;
  letter-spacing: 5px;
}

.dropdown button .button {
  display: block;
  background-color: black;
  color: goldenrod;
  font-family: Tektur, serif;
  font-size: 20px;
  padding: 0px 15px;
  border: none;
  cursor: pointer;
  letter-spacing: 5px;
}

.dropdown a {
  display: block;
  color: gold;
  padding: 7px 15px 10px;
}

.dropdown .content {
  display: none;
  position: absolute;
  background-color: black;
  border: solid 3px white;
  min-width: 100px;
}

.dropdown:hover .content {
  display: block;
}

.dropdown:hover button {
  color: greenyellow;
}

.dropdown:hover button .button {
  color: greenyellow;
}

/* aside sections */

aside h2 {
  border-bottom: solid 3px white;
  font-size: 30px;
  padding: 0px 0px 10px;
  margin-top: 5px;
  color: #7c90a0;
  text-align: center;
}

aside p {
  color: white;
  padding: 0px 10px;
}

/* main content - links */

main a {
  color: goldenrod;
  cursor: pointer;
  text-decoration: none;
}

main a:hover {
  color: yellowgreen;
}


/* main class content - HOME */
main h2 {
  margin-top: 5px;
  border-bottom: solid 3px white;
  text-align: right;
  color: #7c90a0;
  word-wrap: break-word;
}

main h3 {
  font-size: 25px;
  margin-top: 0px;
  text-align: right;
}

main p {
  padding-bottom: 5px;
}

main .changelog {
  height: 150px;
  width: 400px;
  overflow: scroll;
}

main .changelog p {
	border-bottom: dotted 3px white;
}

/*main class - CLASSES */
main img {
  width: 100px;
}

main .classes {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  text-align: center;
  column-gap: 50px;
}

main .classes h3 {
  font-size: 20px;
  text-align: center;
}

main ul {
  font-family: monospace;
}

/*main class - COMPANIES */

main .companies {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  text-align: center;
  column-gap: 20px;
}

main .companies h3 {
  font-size: 20px;
  text-align: center;
}