#course-content{
    width: 100%;
    min-height: 30dvh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--font);
}


#buy-courses, #lessons{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    text-align: center;
}

#buy-courses{
    height: 30dvh;
}

.buy-button{
    width: 50%;
    min-height: 25%;
    transition: 0.25s ease;
    margin-right: 2%;
    padding: 0.75%;
    border-radius: 10px;
    font-size: 1.35rem;
    border: 1px solid var(--red);
    background-color: var(--red3);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 1;
}

.buy-button:hover{
    color: var(--red2);
    border: 1px solid var(--red2);
    background-color: var(--bg);
}


#lessons{
    font-size: 2rem;
    border-left: 1px solid var(--red);
}

@media (max-width: 1024px) {
    #course-content{
        flex-direction: column;
        padding: 2vw;
        min-height: 80%;
    }

    #buy-courses, #lessons{
        width: 100%;
        height: auto;
    }

    
    #buy-courses{
        margin-bottom: 1vw;
        flex: 1;
    }
    
    #lessons{
        margin-top: 1vw;
        border-left: none;
        border-top: 1px solid var(--red);
    }

    .buy-button{
        margin-bottom: 1vw;
        width: 90%;
        min-height: 40%;
    }
}
