@import url('https://fonts.googleapis.com/css2?family=Englebert&display=swap');
        
body {
    scroll-behavior: smooth;
}

.title {
    font-family: 'Englebert', sans-serif;
    text-align: center;
    font-size: 56px;
    color: #21518b;
    margin-top: 20px;
}

a {
    font-size: 18px;
    display: flex;
    justify-content: center;
}

section {
    padding: 20px 50px;
    background: #eee;
}

.product {
    background-color: rgb(209, 222, 226);
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.product .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product h2 {
    font-size: 44px;
    font-family: 'Englebert', cursive;
}

.product p {
    margin: 0;
}

.product h6 {
    color: red;
}

.product img {
    width: 400px;
}

button {
    font-weight: 600;
    margin-top: 10px;
    width: 150px;
    border: none;
    border-radius: 4px;
    background: rgb(255, 200, 0);
    padding: 10px;
    transition: all 0.3s ease;
}

button:hover {
    background: rgba(243, 200, 43, 0.97);
}

.more-lessons p {
    font-size: 40px;
}

.lesson-card {
    display: flex;
    gap: 20px;
}

.lesson-card .item img {
    width: 100px;
    height: 120px;
    margin-bottom: 5px;
}

.lesson-card .item p {
    margin: 0;
    font-size: 14px;
}

.lesson-card .item h6 {
    color: red;
}

@media screen and (max-width: 992px) {
    .product h2 {
        font-size: 32px;
    }

    .product {
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .product {
        flex-direction: column;
    }

    .product .left {
        display: flex;
        justify-content: center;
    }

    button {
        width: 100%;
    }
}

@media screen and (max-width: 567px) {
    section {
        padding: 50px;
    }
    .more-lessons p {
        font-size: 28px;
    }
    
    li, p, strong {
        font-size: 12px;
    }
}

@media screen and (max-width: 415px) {
    section {
        padding: 20px 20px;
        background: #eee;
    }

    .title {
        font-size: 46px;
    }

    .product img {
    width: 200px;
    }

    .product p {
        font-size: 16px;
    }

    .more-lessons p {
        font-size: 24px;
    }

    .lesson-card .item img {
    width: 80px;
    height: 100px;
    }

    .lesson-card {
    gap: 10px;
}

.lesson-card .item p {
    margin: 0;
    font-size: 10px;
}

.lesson-card .item h6 {
    color: red;
    font-size: 10px;
}

li, p, strong{
        font-size: 11px;
    }
}