@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(70%);
    }
    
    .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: 30px 0px;
    }
    
    .content .container{
        width: 330px;
        height: 90px;
        background-color: var(--warm-white);
        padding: 20px;
        margin: 5px 10px;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        box-shadow: 1px 1px 3px 0px rgb(59, 48, 52, 0.2)
    }
    
    .content .container:hover{
        box-shadow: 0px 0px 8px 0px rgb(59, 48, 52, 0.3);
        transition: 0.3s;
    }
    
    .content .container:hover .fas{
        font-size: 0px;
        transition: 0.3s;
    }
    
    .content .container img{
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: 5px;
    }
    
    .content .container .text{
        word-wrap: break-word;
        margin: 0px 20px;
    }
    
    .content .container .text h2{
        font-family: lemon-milk;
        font-size: 18px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
        margin-bottom: -10px;
    }
    
    .content .container .text p{
        font-family: montserrat;
        font-size: 13px;
        font-style: normal;
        font-weight: normal;
        color: var(--warm-grey);
    }
    
    .content .container .fas{
        font-size: 20px;
        color: var(--warm-grey);
        margin: 0px 0px;
    }
}

@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(70%);
    }
    
    .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: 480px;
        height: 160px;
        background-color: var(--warm-white);
        padding: 25px;
        margin: 10px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        box-shadow: 3px 3px 5px 0px rgb(59, 48, 52, 0.2);
        transition: 0.3s;
    }
    
    .content .container:hover{
        box-shadow: 0px 0px 8px 0px rgb(59, 48, 52, 0.3);
        transition: 0.3s;
    }
    
    .content .container:hover .fas{
        font-size: 0px;
        transition: 0.3s;
    }
    
    .content .container img{
        width: 160px;
        height: 160px;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .content .container .text{
        word-wrap: break-word;
        margin: 0px 30px;
    }
    
    .content .container .text h2{
        font-family: lemon-milk;
        font-size: 25px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
        margin-bottom: -10px;
    }
    
    .content .container .text p{
        font-family: montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        color: var(--warm-grey);
    }
    
    .content .container .fas{
        font-size: 25px;
        color: var(--warm-grey);
        margin: 0px 5px;
    }
}
