
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #100e3a;
  color: #e5e5e5;
}

.header {
  background-color: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
}
.logo{
  max-width: 10%;
}

.menu {
  margin-left: auto;
}

.menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu li {
  display: inline-block;
  margin: 0 10px;
}

.menu a {
  color: #e5e5e5;
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
}

.menu a:hover {
  color: #ffd700;
  transition: color 0.5s;
}

.voli {
  background: url('Volibear_0.jpg') no-repeat center center/cover;
  height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.voli h2 {
  font-size: 350%;
  margin: 0;
}

.voli p {
  font-size: 150%;
}

.abilities img {
  width: 50px;
  position: absolute;  
}

.abilities p {
  padding-left: 57px;  
}

.abilities {
  padding-bottom: 1.5%;  
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

section {
  width: 90%;
  margin: 20px 0;
  padding: 15px;
  background: #0b042e;
  border-radius: 10px;
}

.skins img{
  max-width: 50%;
}
.skins p img{
  position: absolute;
  width:15px ;
  padding-left: 5px;
}
.footer{
  background-color: #1c1c1c;
  padding: 10px; 
  padding-left: 5%;
}

.lightbox {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lightbox:target {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox a {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 24px;
  text-decoration: none;
}

