body {
  font-family: 'roboto', arial, sans-serif;
  background: url('https://files catbox.moe/4hmgnq.jfif') no-repeat center center fixed;
  background-size: cover;
  text-align: center;
  margin: 0;
  padding:0;
  color:#ffffff;
}

.container {
  max-width: 1200px;
  margin:0 auto;
  padding:20px;
  background-color:rgba(128,128,174,0.7);
  border-Radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

header {
  background-color: #4b0082;
  color:white;
  padding:20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left{
  display:flex;
  align-items:center;
  gap:15px;
}

.site-icon img{
  width:100px;
  height:100px;
  border-radius:50%;
  object-fit:cover;
}

.header-right nav u{
  list-style: none;
  margin: 0;
  padding:0;
  display:flex;
  gap:15;
}

.header-right nav ul li a{
  text-decoration:none;
  color:white;
  font-weight:bold;
  transition:color 0.3s;
}

.header-right nav ul li a:hover{
  color:#ffd700;
}

footer{
  background-color:#4b0082;
  color:white;
  padding:20px;
  margin:20px;
}
  











