@font-face{
    src: url("/fonts/High-Summit.ttf");
    font-family: high-summit;
    font-style: normal;
    font-weight: normal;
}

body{
    background-color: var(--background);
}

@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;
    }
    
    .opening .title h1{
        color: var(--warm-grey);
        font-family: high-summit;
        font-size: 50px;
        font-style: normal;
        font-weight: normal;
        margin-top: 0px;
    }
    
    .opening .title img{
        width: 180px;
        height: auto;
        border-radius: 50%;
    }
    
    .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: 15px;
        border-radius: 10px;
        box-shadow: 3px 3px 5px 0px rgb(59, 48, 52, 0.2);
    }
    
    .content .container img{
        width: 100%;
        height: auto;
        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);
        margin-top: -5px;
    }
    
    .content .container h3{
        font-family: montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
        float: right;
    }
}

@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;
    }
    
    .opening .title h1{
        color: var(--warm-grey);
        font-family: high-summit;
        font-size: 60px;
        font-style: normal;
        font-weight: normal;
        margin-top: 0px;
    }
    
    .opening .title img{
        width: 200px;
        height: auto;
        border-radius: 50%;
    }
    
    .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: 100%;
        height: auto;
        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);
        margin-top: -5px;
    }
    
    .content .container h3{
        font-family: montserrat;
        font-size: 18px;
        font-style: normal;
        font-weight: bold;
        color: var(--warm-grey);
        float: right;
    }
}
