* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #202020;
  color: white;
  font-size: 40px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #101010;
  padding: 1rem;
}

header h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

nav a {
  display: inline-block;
  margin-top: 10px;
  font-size: 30px;
}

nav a:hover {
  background-color: rgba(0, 170, 255, 0.2);
  color: white;
}

main {
  margin-top: 200px;
  padding: 1rem;
}

#ferrari {
  width: 60%;
  max-width: 800px;
  cursor: pointer;
  transition: transform 0.6s ease;
}

.move-right {
  transform: translateX(600px);
}

article {
  position: relative;
}

article h4 {
  margin-bottom: 20px;
}

article section {
  position: absolute;
  top: 120px;
  left: -700px;
  width: 700px;
  padding: 1rem;
  background-color: rgba(16, 16, 16, 0.95);
  transition: transform 0.5s ease;
}

article section nav {
  text-align: right;
  cursor: pointer;
  font-weight: bold;
}

.visible {
  transform: translateX(700px);
}