body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFCC00;
}

a {
  text-decoration: none;
  color: black;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #000;
}

nav {
  background-color: #006699;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-logo-title {
  display: flex;
  align-items: center;
}

.nav-logo-title img {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  img src: url('https://www.mercedesamgf1.com/partners/endless');
}

nav ul {
  display: flex;
}

nav li {
  margin: 0 1rem;
}

nav a {
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
}

nav a:hover {
  color: black;
}

#header {
  background-image: url(https://www.mercedesamgf1.com/content/dam/mercedesamgf1/Digital/Partners/Endless/ENDLESS_Logo_2021_RGB.png.transform/mercedes-horizontal-800/image.png);
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-texts {
  text-align: center;
  color: black;
  padding: 2rem;
}

.header-texts h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.header-texts h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.header-texts p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.header-filler {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background-color: #fff;
}

.content-aside {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}

.content {
  width: 60%;
}

.content-first h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-first p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.content-second h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-second h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.content-second p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

aside {
  width: 30%;
  color: black;
  background-color: #006699;
  padding: 1rem;
}

aside h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

aside li {
  margin-bottom: 1rem;
}

aside a {
  color: #333;
}

aside a:hover {
  color: #666;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.1em;
  font-family: Arial, sans-serif;
}

table th, 
table td {
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  border: 5px solid black;
}

table th {
  background-color: #FFCC00;
  color: #000;
}

table tr:nth-child(even) {
  background-color: #FFCC00;
}

table tr:hover {
  background-color: #FFCC00;
}

