#section-1-inner, #section-1-header{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 20px;
}
.winner-container p{
    min-height: 200px;
}
.winner-container img{
    height: 257px;
    width: 100%;
    object-fit: scale-down;

    margin-bottom: 10px;
    border-radius: 7px;
}
.winner-container img:hover{
    cursor: pointer;
    -webkit-filter: brightness(90%);
}
.winner-btn-container{
    margin-top: 30px;
    padding-right: 20px;
    text-align: right;
}

#section-2-inner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
}
.title-name-text{
    min-height: 3em;
}
.entry-container img{
    height: 197px;
    width: 100%;
    object-fit: scale-down;

    border-radius: 7px;
}
.entry-container img:hover{
    cursor: pointer;
    -webkit-filter: brightness(90%);
}
.entry-btn-container{
    margin-top: 20px;
    padding-right: 10px;
    text-align: right;
}
.slides-container{
    position: relative;
}
.left-arrow{
    color: #f1f1f1;
    position:absolute;
    bottom:50%;
    left:0;
    padding-left: 3%;
    font-size: 35px;
}
.right-arrow{
    color: #f1f1f1;
    position:absolute;
    bottom:50%;
    right:0;
    padding-right: 3%;
    font-size: 35px;
}
.right-arrow:hover, .left-arrow:hover{
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.modal-description-container{
    position: relative;
    text-align: center;
}
.modal-description-container img{
    filter: brightness(20%);
}
.modal-description-container p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--default-light-text, #FFFFFF);
    max-width: 500px;
    display: none;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    height: auto;
    width: auto;
    max-width: 1000px;
    max-height: 70vh;
}
.modal-license{
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}
.modal-license p{
    color: var(--default-light-text);
}
/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.counter{
    background-color: rgba(0,0,0,0.5);
    border-radius: 40%;
    position: absolute;
    top: 3%;
    right: 3%;
    color: var(--default-light-text);
    padding: 3px 9px;
    font-size: 0.9em;
    line-height: 1.5em;
    font-family: 'WorkSans-Regular', sans-serif;
}
.preview-container{
    position: relative;
}
.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 20%;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content */
.popup-content {
    background-color: var(--default-background);
    margin: auto;
    padding: 20px;
    width: 80%;
    border-radius: 5px;
    min-width: 800px;
}
#download-pop-up-btn-container{
    margin-top: 20px;
}
#download-pop-up-btn{
    opacity: 50%;
    pointer-events: none;
}
#rules{
    font-size: 0.8em;
    padding: 10px 0;
}
#credit-text-input{
    height: 2em;
    min-width: 600px;
    width: 90%;
    padding: 3px 10px;
    border: 1px solid var(--default-text);
    border-radius: 2px;
    color: black;
    font-size: 1em;
    line-height: 1.4em;
    font-family: 'WorkSans-Regular', sans-serif;
}
#credit-text-btn{
    width: auto;
    height: 2em;
    transition: transform 1000ms ease-in-out;
}
#credit-text-btn:hover{
    cursor: pointer;
}
#clipboard-container{
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}
#credit-text-checked{
    display: none;
    width: auto;
    height: 2em;
    transition: transform 1000ms ease-in-out;
}
#enter-email-pop-up{
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-color: var(--default-background);
    border: 1px solid black;
    border-radius: 15px;
    min-width: 200px;
    min-height: 100px;
    padding: 20px;
}
#enter-email-pop-up span{
    font-size: 1.3rem;
    margin: 0;
}
#enter-email-pop-up span:hover{
    cursor: pointer;
    color: var(--turquoise-dark);
}
.flex{
    display: flex;
}
.justify-space-between{
    justify-content: space-between;
}
.align-items-center{
    align-items: center;
}
.gap-20{
    gap: 20px;
}
#enter-email-pop-up input{
    width: 80%;
    padding: 2px 4px;
    min-height: 30px;
}
#social-media-icon{
    height: 3rem;
    width: auto;
}