body, html {
  margin: 0;
  font: bold 14px/1.4 'Open Sans', arial, sans-serif;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  color:#fff;
}

p{
  color:#fff;
  font-family: 'Open Sans', arial, sans-serif;
  font: bold 14px/1.4 
}

ul {
  margin-top: 150px;
  padding: 0;
  list-style: none;
  display: flex;             
  justify-content: center;    
  gap: 10px;          
  flex-wrap: wrap;          
}

li {
  position: relative;
}

a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 15px 20px;
  position: relative;
  font: bold 14px/1.4 'Open Sans', arial, sans-serif;
}

a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 0;
  background: #fff;
  transition: 0.3s ease;
}

a:hover:after {
  width: 100%;
  left: 0;
}

h1 {
  color: white;
  font-size: 40px;
  letter-spacing: 0.15em;
  text-align: center;
  margin-top: 25px;
 font-family: 'Open Sans', arial, sans-serif;
}

img{
  width:30%;
  border: double white 10px;
  box-shadow: rgba(255, 255, 255, 0.167) 10px 10px 20px;
}


.image {
   
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  
  }
  

  .image:hover {
    transform: scale(1.1); 
    filter: opacity(1.2); 
    opacity: 1; 
  }


.custom-hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right,  #000000, #E5E7EB, #000000);
    width: 70%;
    margin: 2rem auto;
}

.box{
  margin-left: 100px;
  margin-right: 100px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  border: double 10px rgba(255, 255, 255, 0.461);
}

.box h2{
  font-size: 2em;
  text-transform: uppercase;
}

.box p{
  font-size: 1.3em;
  letter-spacing: 0.1em;
  line-height: 1.3em;
}

details p{
  color: rgb(136, 201, 255);
}

summary{
  color: rgb(255, 225, 142);
  font-size: 1.4em;
  padding:20px;
}
p strong{
  color: rgb(255, 255, 255);
}

div a{
  font-size: 3em;
}

.centered-list{
    list-style: disc;
    list-style-position: inside;
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 1.5em;
    color: white;
}

li{
  color: rgb(136, 201, 255);
}
li strong{
  color:white;
}