h1 {
    text-align: center;
    font-size: 8vh;
    padding: 40px 0px 50px 0px;
    color: #36034e;
}

h2 {
    text-align: center;
    font-size: 5vh;
    padding: 40px 0px 50px 0px;
    color: #36034e;
}

h3 {
    text-align: center;
    font-size: 2.8vh;
    padding-bottom: 10px;
    color: #36034e;
}

p {
    text-align: center;
    color: rgb(113, 106, 116);
    font-size: 2.5vh;
    padding-bottom: 30px;
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}

#start-text {
    padding: 0px 100px 120px;
    line-height: 2;
}

.course-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    padding: 0px 40px 40px 60px;
    align-items: start;
}

.course {
    width: 80%;
    display: flex;
    flex-direction: column;
}


.course-btn {
    padding: 14px 42px;
    background-color: #36034e;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 7px;
    font-weight: 500;
    font-size: 14px;
    height: 50px;
    display: flex;
    align-items: center;
    margin: 20px auto;
    transition: background-color 0.5s, color 0.5s;
}

.course p {
    text-align: left;
    line-height: 2;
}

.course-btn:hover {
    background-color: #d3ff00;
    color: #36034e;
    transition: 0.5s;
}

.course-btn:hover #arrow {
    fill: black;
}

.course a {
    text-decoration: none;
}

#coming-soon {
    text-align: center;
    font-size: 25px;
    color: #36034e;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 6vh;
    }

    h2 {
        font-size: 4vh;
    }

    p {
        font-size: 2.5vh;
    }

    #start-text {
        padding: 0px 40px 120px;
    }

    .course-container {
        grid-template-columns: 1fr;
        padding: 0px 20px 40px 20px;
    }

    .course {
        width: 100%;
    }

    iframe {
        width: 350px;
    }

}