body {
    font-family: Arial, sans-serif;
  }
  
  header {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
  }
  
  section {
    margin: 5% 3%;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 20px;
  }
  
  h1, h2 {
    color: #333;
  }
  
  h2 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }
  .app-container {
    display: flex;
    flex-wrap: wrap;
    margin: 5% 0;
  }
  
  .app {
    width: 20%;
    text-align: center;
    margin: 2% 0;
  }
  
  .app img {
    width: 30px;
    height: 30px;
    margin: 0 auto;
  }

  .more{
    color: #c1c1c1;
    font-size: 15px;
    float: right;
    text-decoration:none;
  }
  
  .app p {
    margin-top: 10px;
    font-size: 15px;
  }
  .people-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    margin-top: 2%;
  }

  .person-card {
    display: inline-block;
    scroll-snap-align: center;
    text-align: center;
    margin: 0 0px 15px 15px;
    width: 200px;
    padding: 10px;
    background-color: white;
  }
  
  .person {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hot-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
    justify-items: center;
  }

  .hotApp {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hotApp img{
    border-radius: 18%;
    width: 40px;
    height: 40px;
  }
  
  .hotApp-card {
    display: inline-block;
    scroll-snap-align: center;
    text-align: center;
    flex: 0 0 25%;
    margin-top: 20px;
  }
  
  .hotApp-card p {
    margin-top: 0px;
    font-size: 12px;
  }

  .person img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
  }
  
  .person p {
    margin-top: 0px;
  }
  
  .view-details {
    padding: 5px 20px;
    background-color: #1399e7;
    border: none;
    color: white;
    border-radius: 13px;
    margin: 5% 0;
  }

  h3{
    padding-left: 3%;
  }

  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    text-align: center;
}

.hidden {
  display: none;
}