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

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: white;
  text-decoration: underline;
}

a:hover {
  color: #ccc;
}

/* Header */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s;
}

nav a:hover {
  color: #ccc;
}

/* Hero */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 60px 40px;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: 8px;
}

.hero-text {
  max-width: 500px;
}

.hero-text p {
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}

.button:hover {
  background-color: #ccc;
  color: white;
}

main {
  flex: 1;
}

/* Footer */

footer {
  text-align: center;
  padding: 30px;
  color: #fff;
  font-size: 14px;
}