* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: black; 
}

.logo h1 {
  font-size: 32px; 
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo h1:hover {
  transform: scale(1.1); 
  color: #777777;
}

.logo h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background-color: #5c5c5c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.logo h1:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu {
  list-style: none;
  display: flex;
  gap: 40px;
}

.menu li {
  display: inline;
}

.menu a {
  text-decoration: none;
  font-size: 20px; 
  color: #ffffff;
  padding: 12px 18px;
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #5c5c5c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding: 20px;
  gap: 30px; 
}

.content img {
  max-width: 600px; 
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.content img:hover {
  transform: scale(1.05); 
}

.text-content {
  max-width: 700px; 
}

.text-content h1 {
  font-size: 2.5rem; 
  color: #fff; 
  transition: color 0.3s ease;
}

.text-content h1:hover {
  color: #cccccc; 
}

.text-content p {
  font-size: 1.5rem; 
  color: #ffffff;
  transition: color 0.3s ease;
}

.text-content p:hover {
  color: #cccccc; 
}

.text-content span {
  font-size: 1.0rem; 
  color: #ffffff;
  transition: color 0.3s ease;
}

.text-content span:hover {
  color: #cccccc; 
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 20px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .menu a {
    font-size: 18px;
  }

  .content {
    flex-direction: column;
    text-align: center;
  }

  .content img {
    max-width: 300px; 
    margin-bottom: 20px;
  }
}