body {
  background-color: rgba(128, 128, 128, 0.429);
}

h1 {
  font-family: 'Special Gothic Expanded One', sans-serif;
  color: rgb(149, 31, 31);
  text-align: center;
  margin-left: 15px;
}

h2 {
  font-family: 'Special Gothic Expanded One', sans-serif;
  margin-left: 15px;
}

.container {
  display: flex;
}

#textOne {
  margin: 10px;
}

aside {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px;
  width: 50%;
}

p {
  font-size: 18px;
  font-family: "Roboto Mono", monospace;
}

img {
  border-radius: 9%;
}

header {
  display: flex;
  justify-content: space-between;
  background-color: rgba(63, 63, 66, 0.614);
}

nav {
  display: flex;
  align-items: center;
  margin-right: 50px;
}

a {
  padding: 0 10px;
}

footer {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-right: 20px;
  margin-bottom: 10px;
}

button {
  background-color: #222;
  border-radius: 4px;
  border-style: none;
  box-sizing: border-box;
  color: rgb(201, 18, 18);
  cursor: pointer;
  display: inline-block;
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: none;
  min-height: 44px;
  min-width: 10px;
  outline: none;
  overflow: hidden;
  padding: 9px 20px 8px;
  position: relative;
  text-align: center;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

button:hover,
button:focus {
  opacity: 0.75;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(108, 103, 103);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: rgb(201, 18, 18);
  font-family: 'Special Gothic Expanded One', sans-serif;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: rgba(213, 213, 213, 0.429);
}

.dropdown:hover .dropdown-content {
  display: block;
}

table {
  border: 2px black solid;
}

tbody tr:nth-child(odd) {
  background: #b3abab;

}

.textTwo {
  display: flex;
  flex-direction: column;
}