@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

.title{
    width: 100%;
    height: 200px;
    background-image: url('../assets/services/insight.webp'); 
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
}
.time{
    color: gray;
    margin-bottom: 30px;
    pointer-events: none
}
.content{
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.content p{
    width: 70%;
    font-size: 24px;
    font-family: "EB Garamond", serif;
}

@media screen and (max-width: 1090px){
    main{
        margin-top: 90px;
    }
    .title{
        padding: 30px;
    }
    .title h1{
        font-size: 20px;
    }
    .content{
        padding: 20px;
    }
    .content p{
        width: 90%;
        font-size: 20px;
    }
}