:root {
  font-size: 15px;
  margin-top: 200px;
  margin-bottom: 200px;
  margin-left: 200px;
  margin-right: 200px;
}

h1 {
  text-align: center;
  color: red;
  font-family: Arial;
  font-size: 80px;
  text-decoration: none;
}

h1 a {
  text-decoration: none;
  color: red;
}

h2 {
  text-align: center;
  color: red;
  font-family: Arial;
}

h2 a {
  text-decoration: none;
  color: red;
}

body {
  background-color: black;
  color: white;
  font-family: Arial;
  text-transform: uppercase;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

li {
  margin-top: 5px;
  margin-bottom: 5px;
}

nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav li a {
  display: block;
  color: red;
  padding: 14px 16px;
  text-decoration: none;
}

px1 {
  color: red;
  font-weight: bold;
}

px2 {
  color: red;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.box {
  flex-basis: 200px;
  text-align: center;
  margin: 30px;
  padding: 10px;
  border: 2px solid red;
  border-radius: 5px;
}

.box:img {
  max-width: 240px;
  max-height: 240px;
}

.main {
  flex-basis: 600px;
  padding: 20px;
  border: 2px solid red;
  border-radius: 5px;
}

a:hover {
  color: #a30000;
  transition-duration: 0.5s;
}

footer {
  text-align: center;
}