body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background: #091E3E;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 0.5em 0 0;
}

section {
    padding: 2em;
    margin: 1em 0;
    background: #fff;
}

section h2 {
    color: #444;
}

section h3 {
    color: #666;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #eee;
    margin: 0.5em 0;
    padding: 0.5em;
    border-radius: 5px;
    font-weight: 600;
}

.screenshots {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screenshot-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.screenshot-container img {
    width: 30%;
    margin: 1%;
    border-radius: 5px;
}

footer {
    background: #061429;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

@media (max-width: 768px) {
    .screenshot-container img {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .screenshot-container img {
        width: 95%;
    }
}


/* Modal view */

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  #myImg:hover {opacity: 0.7;}
  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation */
  .modal-content, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }

    .dashImg{
      max-width: 100% !important;
    }
  }
