@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%) saturate(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);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 50px 0px;
    }
    
    .content .container{
        width: 250px;
        height: auto;
        background-color: var(--warm-white);
        padding: 35px 30px;
        margin: 15px;
        border-radius: 10px;
        box-shadow: 3px 3px 5px 0px rgb(59, 48, 52, 0.2);
    }
    
    .content .container img{
        width: 250px;
        height: 200px;
        object-fit: cover;
        border-radius: 5px;
    }
    
    .content .container h2{
        font-family: lemon-milk;
        font-size: 20px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
    }
    
    .content .container p{
        font-family: montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: normal;
        color: var(--warm-grey);
    }
    
    .content .container h3{
        width: 130px;
        font-family: montserrat;
        font-size: 12px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
        opacity: 0.6;
        float: left;
        word-wrap: wrap;
    }
    
    .content .container a{
        float: right;
        text-decoration: none;
        padding: 11px 26px;
        background-color: var(--green);
        border-radius: 5px;
        color: var(--warm-white);
        font-family: montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: bold;
        box-shadow: 0px 0px 5px 0px rgb(27, 79, 82, 0.3);
        transition: 0.3s;
    }
    
    .content .container a:hover{
        background-color: transparent;
        color: var(--green);
        box-shadow: 0px 0px 5px 0px rgb(27, 79, 82, 0.7);
    }
}

@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%) saturate(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);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 50px 0px;
    }
    
    .content .container{
        width: 300px;
        height: auto;
        background-color: var(--warm-white);
        padding: 35px 30px;
        margin: 20px;
        border-radius: 10px;
        box-shadow: 3px 3px 5px 0px rgb(59, 48, 52, 0.2);
    }
    
    .content .container img{
        width: 300px;
        height: 240px;
        object-fit: cover;
        border-radius: 5px;
    }
    
    .content .container h2{
        font-family: lemon-milk;
        font-size: 22px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
    }
    
    .content .container p{
        font-family: montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        color: var(--warm-grey);
    }
    
    .content .container h3{
        font-family: montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
        opacity: 0.6;
        float: left;
        word-wrap: wrap;
    }
    
    .content .container a{
        float: right;
        text-decoration: none;
        padding: 12px 28px;
        background-color: var(--green);
        border-radius: 5px;
        color: var(--warm-white);
        font-family: montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: bold;
        box-shadow: 0px 0px 5px 0px rgb(27, 79, 82, 0.3);
        transition: 0.3s;
    }
    
    .content .container a:hover{
        background-color: transparent;
        color: var(--green);
        box-shadow: 0px 0px 5px 0px rgb(27, 79, 82, 0.7);
    }
}
