@media only screen and (max-width: 1000px){
    .opening{
        width: 100%;
        height: 100%;
    }
    
    .opening .background-image{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .opening .background-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(80%);
    }
    
    .opening .title{
        top: 50%;
        left: 50%;
        position: absolute;
        transform: translateX(-50%) translateY(-50%);
        text-align: center;
        filter: drop-shadow(0px 0px 10px rgb(0, 0, 0, 0.3));
    }
    
    .opening .title h1{
        color: var(--white);
        font-family: lemon-milk;
        font-size: 30px;
        font-style: normal;
        font-weight: bold;
    }
    
    .opening .title img{
        width: 180px;
        height: auto;
    }
    
    .content{
        width: 100%;
        height: auto;
        background-color: var(--background);
        padding: 50px 0px;
    }
    
    .content .year-selector{
        text-align: center;
        margin: 50px 0px;
    }
    
    .content .year-selector h1{
        color: var(--warm-grey);
        font-family: lemon-milk;
        font-size: 25px;
        font-weight: bold;
        font-style: normal;
    }
    
    .content .year-selector .selector{
        text-align: center;
        width: 100px;
        height: 35px;
        font-size: 16px;
    }
    
    .content .year-selector .selector option{
        text-align: center;
        font-size: 15px;
    }
    
    .content .wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
    }
    
    .content .event{
        margin: 30px 100px;
    }
    
    .content .event .container{
        width: 300px;
        height: auto;
        background-color: var(--warm-white);
        margin: 20px 0px;
        box-shadow: 0px 0px 5px 0px rgb(247, 246, 238, 0.2);
        border-radius: 10px;
    }
    
    .content .event .container img{
        width: 300px;
        height: 250px;
        object-fit: cover;
        border-radius: 10px 10px 0px 0px;
    }
    
    .content .event .container .details{
        width: 200px;
        height: auto;
        padding: 20px 30px;
    }
    
    .content .event .container .details h2{
        font-family: lemon-milk;
        font-size: 20px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
    }
    
    .content .event .container .details p{
        font-family: montserrat;
        font-size: 15px;
        font-style: normal;
        font-weight: normal;
        color: var(--warm-grey);
        opacity: 0.9;
    }
    
    .content .event .container .details h3{
        font-family: montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
        opacity: 0.6;
        margin-top: 30px;
    }
    
    .content .event .images{
        width: 70px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        background-color: var(--green);
        text-align: center;
        border-radius: 10px;
        margin: 0px auto;
        box-shadow: 0px 0px 5px 0px rgb(27, 79, 82, 0.2);
    }
    
    .content .event .images:hover{
        width: 290px;
        height: auto;
        cursor: pointer;
        transition: 0.3s;
        padding: 5px;
        margin: 0px auto;
        background-color: var(--warm-white);
        box-shadow: 0px 0px 5px 0px rgb(247, 246, 238, 0.2);
    }
    
    .content .event .images:hover img{
        width: 140px;
        height: 100px;
        transition: 0.3s;
        margin: 2px;
    }
    
    .content .event .images:hover .fas{
        color: transparent;
        font-size: 0px;
        transition: 1s;
    }
    
    .content .event .images .fas{
        color: var(--warm-white);
        font-size: 20px;
        opacity: 0.9;
        padding: 5px 0px;
    }
    
    .content .event .images img{
        width: 0px;
        height: 0px;
        border-radius: 1px;
        object-fit: cover;
    }
    
    .content .event a{
        width: 70px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--green);
        text-align: center;
        text-decoration: none;
        border-radius: 10px;
        margin: 0px auto;
        box-shadow: 0px 0px 5px 0px rgb(27, 79, 82, 0.2);
    }
    
    .content .event a:hover{
        background-color: var(--warm-white);
        box-shadow: 0px 0px 8px 0px rgb(27, 79, 82, 0.5);
        transition: 0.3s;
    }
    
    .content .event a:hover .fas{
        color: var(--green);
        transition: 0.3s;
    }
    
    .content .event a .fas{
        color: var(--warm-white);
        font-size: 20px;
        opacity: 0.9;
        padding: 5px 0px;
    }
    
    .content .hide{
        display: none;
    }
}

@media only screen and (min-width: 1000px){
    .opening{
        width: 100%;
        height: 100%;
    }
    
    .opening .background-image{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .opening .background-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(80%);
    }
    
    .opening .title{
        top: 50%;
        left: 50%;
        position: absolute;
        transform: translateX(-50%) translateY(-50%);
        text-align: center;
        filter: drop-shadow(0px 0px 10px rgb(0, 0, 0, 0.3));
    }
    
    .opening .title h1{
        color: var(--white);
        font-family: lemon-milk;
        font-size: 40px;
        font-style: normal;
        font-weight: bold;
    }
    
    .opening .title img{
        width: 250px;
        height: auto;
    }
    
    .content{
        width: 100%;
        height: auto;
        background-color: var(--background);
        padding: 50px 0px;
    }
    
    .content .year-selector{
        text-align: center;
        margin: 50px 0px;
    }
    
    .content .year-selector h1{
        color: var(--warm-grey);
        font-family: lemon-milk;
        font-size: 30px;
        font-weight: bold;
        font-style: normal;
    }
    
    .content .year-selector .selector{
        text-align: center;
        width: 130px;
        height: 45px;
        font-size: 16px;
    }
    
    .content .year-selector .selector option{
        text-align: center;
        font-size: 15px;
    }
    
    .content .wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
    }
    
    .content .event{
        margin: 30px 0px;
    }
    
    .content .event .container{
        width: auto;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        background-color: var(--warm-white);
        margin: 20px;
        box-shadow: 0px 0px 5px 0px rgb(247, 246, 238, 0.2);
        border-radius: 10px;
    }
    
    .content .event .container img{
        width: 300px;
        height: 300px;
        object-fit: cover;
        border-radius: 10px 0px 0px 10px;
    }
    
    .content .event .container .details{
        width: 500px;
        padding: 0px 50px;
    }
    
    .content .event .container .details h2{
        font-family: lemon-milk;
        font-size: 22px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
    }
    
    .content .event .container .details p{
        font-family: montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        color: var(--warm-grey);
        opacity: 0.9;
    }
    
    .content .event .container .details h3{
        font-family: montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
        opacity: 0.6;
        margin: 30px 0px;
    }
    
    .content .event .images{
        width: 70px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        background-color: var(--green);
        text-align: center;
        border-radius: 10px;
        margin: 0px auto;
        box-shadow: 0px 0px 5px 0px rgb(27, 79, 82, 0.2);
    }
    
    .content .event .images:hover{
        width: 930px;
        height: auto;
        cursor: pointer;
        transition: 0.3s;
        padding: 5px;
        margin: 0px auto;
        background-color: var(--warm-white);
        box-shadow: 0px 0px 5px 0px rgb(247, 246, 238, 0.2);
    }
    
    .content .event .images:hover img{
        width: 300px;
        height: 168.75px;
        transition: 0.3s;
        margin: 5px;
    }
    
    .content .event .images:hover .fas{
        color: transparent;
        font-size: 0px;
        transition: 1s;
    }
    
    .content .event .images .fas{
        color: var(--warm-white);
        font-size: 20px;
        opacity: 0.9;
        padding: 5px 0px;
    }
    
    .content .event .images img{
        width: 0px;
        height: 0px;
        border-radius: 2px;
        object-fit: cover;
    }
    
    .content .event a{
        width: 70px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--green);
        text-align: center;
        text-decoration: none;
        border-radius: 10px;
        margin: 0px auto;
        box-shadow: 0px 0px 5px 0px rgb(27, 79, 82, 0.2);
    }
    
    .content .event a:hover{
        background-color: var(--warm-white);
        box-shadow: 0px 0px 8px 0px rgb(27, 79, 82, 0.5);
        transition: 0.3s;
    }
    
    .content .event a:hover .fas{
        color: var(--green);
        transition: 0.3s;
    }
    
    .content .event a .fas{
        color: var(--warm-white);
        font-size: 20px;
        opacity: 0.9;
        padding: 5px 0px;
    }
    
    .content .hide{
        display: none;
    }
}
