main {
    padding: 20px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (max-width:877px) {
    main {
        justify-content: center;
    }
}

.main2 {
    align-items: center;
    flex-wrap: nowrap;
}

.main2>img {
    max-width: 250px;
    border-radius: 10px;
}

.main2 .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 300ms;
}

.main2 .description {
    color: var(--text);
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    white-space: pre-line;
}

@media only screen and (max-width:798px) {
    .main2 {
        flex-direction: column;
    }
}