body {
    font-family: 'Kanit', sans-serif;
    background-image: url('../img/backgroundfullstars.webp');
    background-position: center;
    background-size: cover;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

#videoContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

video {
    width: 75%;
    border: 5px solid black;
    border-radius: 5px;
}

h1 {
    font-size: 5em;
    display: block;
    margin: 0 auto;
    text-shadow:1px 1px 1px rgba(255, 255, 255, 1);
    padding-bottom: 25px;
}

.gallery {
    align-items: center; 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 35%;
    margin: 0 auto;
    padding: 20px; 
}

.item {
  margin: 2%;
  text-align: center;
  box-sizing: border-box;
  padding-bottom: 1%;
}

.item img {
  max-width: 100%;
  min-width: 200px; /* prevents image from getting smaller than 200px */
  height: auto;
  display: inline-block;
}


.item:hover {
    transform: scale(1.1);
}

.item img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6); /* Adjust the values as needed */
}

.item img:hover{
    box-shadow: 0px 25px 55px rgba(0, 0, 0, 1); 
}

.item h2 {
    padding: 2%;
    color: #da86a9;
    font-weight: 400;
    font-size: 3em;
    /* border: 2px dotted gray; */
    margin: 0px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 1);
    text-decoration: none; 
}


@media (max-width: 1200px) {

    h1 { 
        font-size: 2em;
    }
    
    .item h2 {
        padding-bottom: 1%;;
        color: #da86a9;
        font-weight: 400;
        font-size: 2em;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
    }
}
@media (max-width: 800px) {
    .item h2{
        font-size: 1.3em;
    }
}
