body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  text-align: center;
}


header {
  background: #1034b5;
  color: white;
  padding: 15px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration:  underline #ec0602;
  font-size: 20px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: yellow;
}


.banner {
  position: relative;
}

.banner img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 20px;
  animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


main {
  text-align: center;
  margin: 90px auto;
  width: 100%;
  font-size: 36px;       
  line-height: 1.6;
  color: #222;
}

main h2 {
  font-size: 26px;
  color: #435c72;
  margin-bottom: 15px;
}


.avatar {
  display: block;
  margin: 20px auto;
  width: 200px;
  border-radius: 50%;
  box-shadow: 0 0 10px #aaa;
  transition: transform 0.3s;
}

.avatar:hover {
  transform: scale(1.1);
}

button {
  background: #0078d7;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #005fa3;
}


footer {
  background: #222;
  color: white;
  padding: 10px;
  margin-top: 20px;
}
