/* GALLERY MAIN*/

.gallery-container {
    width: 100%;
    height: 100%;
}

.gallery-wrapper {
    width: 100%;
    display: flex;
    align-items: top;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.gallery-thumb {
    width: 300px;
    height: 300px;
    display: flex;
    background-color: var(--main);
    border-radius:5px;
}


.thumb-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thumb-header h2, h3 {
    color: var(--dark);
    font-size: 16px;
}

.thumb-header h2 {
    color: var(--light);
    font-size: 16px;
}

.thumb-image {
    width: 300px;
    height: 180px;
    padding: 10px;
}

.thumb-image p {
    color: var(--dark);
    font-weight: 400;
    text-align: center;
}

.thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
    
/* END GALLERY MAIN*/

/* PHOTO GALLERY */

.photo-header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.photo-header-wrapper {
    max-width: 1500px;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}
    

.photo-header h1 {
    color: var(--light);
    margin-top: 40px;
    text-align: center;
}

/* MAIN */

.pic-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.container-wrapper {
    width: 100%;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.container-item {
    width: 350px;
    height: 200px;
    margin: 2px;
}

.container-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-item-winner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.container-item-winner h2 {
    position: absolute;
    text-align: center;
    background-color: var(--main);
    padding: 5px 30px;
    font-size: 20px;
    top: 0;
    left: 0;
}

.container-item-winner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid var(--main);
}

/* END PHOTO GALLERY */


.footer-container {
    position: relative;
    bottom: 0;
    width: 100%;
  }
