body {
    background-color: #5f0101;
    color: rgb(70, 181, 240); 
    text-shadow: 0px 0px 0px #e6ebec;
    text-align:left; 
    line-height: 2em;
    padding: 5px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-weight:100;
  }
  
  #header {
    width: 100%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    
  }
  
  #container {
    width: 100%;
    max-width: 1500px;
    padding: 25px;
    background-color: rgb(30, 22, 69);
    border-radius: 25px;
    box-sizing:border-box;
    justify-content:space-around;
    box-shadow: 0px 0px 5px rgba(212, 212, 210, 0.1);
  }
  
  #screenshots {
    
    justify-content:space-around;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    align-items: center;
    justify-content: center;
    align-items: center;
    flex-direction:row;
    padding: 0px;
    border-radius: 50px;
    box-shadow: 0px 0px 5px rgba(16, 15, 9, 0.1);
    
    
  }
  
  .screenshot {
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition:all 0.5s ease-in-out;
    margin-bottom:auto;
    display: block;
    width: 50%;
    height: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 50px rgb(247, 247, 247);
    border-radius: 50px;
    padding: 50px;
    margin-top:auto;
    margin-bottom:auto;
    margin-left: auto;
    margin-right: auto;

  }
  
  .screenshot:hover {
    transform: translateY(10px);
  
  }
  

  
  .screenshot img {
    border: 5px solid #086211;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(241, 3, 3, 0.3);
    object-fit: cover;
    object-position: center;
    display: block;
    width: 100%;
    align-items:end;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
  }
  
  .screenshot:hover img {
    transform: scale(1.1);
  }
  
  .screenshot p {
    margin: 0;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  }
  
  #description {
    margin-top: 50px;
  }
  
  #characteristics {
    margin-top: 50px;
  }
  
  #improvements {
  margin-bottom: 50px;
  }
  
  .characteristics-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: #fff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    text-align: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: row;

  }
  