
html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}
body{
  background-image: url(./pics/2.jpg);
}



#BMC{
  background-image: linear-gradient(RGB(140, 205, 235, 0), RGB(140, 205, 235, 1)30%, RGB(140, 205, 235, 0));
}

#Olimpiade{
   background-image: linear-gradient(RGB(237, 243, 217, 0), RGB(237, 243, 217, 1)30%, RGB(237, 243, 217, 0));
}

#Poster{
  background-image: linear-gradient(RGB(140, 205, 235, 0), RGB(140, 205, 235, 1)30%, RGB(140, 205, 235, 0));
}

#caraMendaftar .img{
    display: flex;
    justify-self: center;
    align-self: center;
    width: 300px;
    height: 200px;
}



.bangor{
   
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    font-size: larger;
    
} 
.bangor p{
    width: 80vh;
}

.list{
    text-align: start;
    width: 70vh;
}

.kotak{
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-content: center;
  flex-grow: 1;
  flex-shrink: 1;
  margin: 3rem;
}

.katok{
  background-color: #68e0da;
  text-align: center;
  padding: 1.5rem 3rem;
  border-radius: 15%;
  border: solid 3px #43a49f;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media(max-width: 780px) {
      .kotak{
        display: flex;
        flex-wrap: wrap;
      }
}

@media (max-width: 480px) {

      /* CSS for screens below or equal to 600px wide */
      
      .kotak{
        display: block;
      }
      .katok{
        margin-bottom: 1rem;
      }
      

      .bangor p{
        display: block;
        margin: 0   ;
        text-align: center;
        width: 45vh;
      }

      .bangor a{
        height: 50vh;
        width: 25vh;
      }

      .list{
        width: 45vh;
      }
    }

/*Cards from Codepen*/
.page-banner {
  width: 80%;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgb(134, 196, 54),
    rgb(143, 207, 58)
  );
   /* Gradient for banner */
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 3vw;
  color: black; 
  letter-spacing: 2px; /* Spacing for elegance */
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3); /* Soft shadow for clarity */
  border-radius: 20px; /* Rounded ends */
}

@media (max-width: 768px) {
  .page-banner {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 3vw;
  }
}