.section{
    display: flex;
    width: 100%;
    height: auto; /* Adjust the height as needed */
    
}


.left {
    width: 50%;
    background-color: #f4f4f4;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
}

.right {
    width: 50%;
    background-color: #ddd;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
}

.bigletter{
    font-size: 60px;
}

.slogan{
    font-size: 22px;
}

.title{
    text-align: center;
}
@media (max-width: 768px) {

    .bigletter{
        font-size: 30px;
    }
    .section{
        display: block;
    }
    .left{
        width: 100%;
    }
    .right{
        width: 100%;
    }
}