html, body {
    background-color: #0b0b45 !important; 
    color: white;
}

.home-content {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100vw;
    background-color: #0b0b45;
    color: white;
    gap: 0px;
    margin-right: 2rem;
    margin-bottom: 100px;
}

.home-content h1 {
    margin-top: 7rem;
    margin-left: 2rem;
    font-weight: bold;
    font-size: 3rem;
}
.home-content time {
    margin-left: 2rem;
    color: grey;
    margin-bottom: 1rem;
}

.content {
    margin-left: 2rem;
    margin-right: 2.5rem;
    text-align: justify;
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.content p {
    height: auto;
}

.content-2 {
    margin-bottom: 40px;
}

.content-detail {
    display: flex;
    flex-direction: column;
    height: auto;
}
.content-detail a {
    color: white;
    font-weight: bold;
}
.content-detail a:hover {
    text-decoration: underline;
}
.content-detail img {
    margin-top: 10px;
}

.swiper {
    width: 30rem;
    height: 300px;

  }


  .carousel {
    background: #0b0b45;
  }
  
  .carousel-cell {
    width: 35rem;
    /* height: auto; */
    margin-right: 10px;
    background: #0b0b45;
    border-radius: 5px;
    counter-increment: gallery-cell;
  }
  
  /* cell number */
  .carousel-cell:before {
    display: block;
    text-align: center;
    content: counter(gallery-cell);
    /* line-height: 200px; */
    /* font-size: 80px; */
    color: #0b0b45;
  }
  
  

@media screen and (max-width: 768px) {
    .home-content {
        height: auto;
        display: flex;
        flex-direction: column;
        margin-bottom: 100px;
    }
    .home-content h1 {
        font-size: 1.85rem;
        text-align: left;
        margin-right: 2rem;
    }
    .content {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .content-2 {
        margin-top: -80px;
        margin-bottom: 30px;
    }
    img {
        width: 80vw;
    }

    .content-detail {
        display: flex;
        height: auto;
    }
    .content-detail a {
        text-decoration: underline;
    }

    .carousel {
        background: transparent;
      }
      
      .carousel-cell {
        width: 80vw;
        height: auto;
        margin-right: 10px;
        background: #0b0b45;
        border-radius: 5px;
        counter-increment: gallery-cell;
        margin-top: -20px;
      }
      
      /* cell number */
      .carousel-cell:before {
        display: block;
        text-align: center;
        content: counter(gallery-cell);
        /* line-height: 200px; */
        /* font-size: 80px; */
        color: #0b0b45;
      }
}