/* Header */
.header-accent {
    height: 42em;
}

header a {
    color: #000000;
}

header h1 {
    color: #000000;
}


/* Hero Section : intro */

.course-desc-section {
    padding: 6em 0em;
    width: 80vw;
    min-width: 700px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    /* border: 1px solid aqua; */
}


.course-desc-section img {
    width: 23em;
    height: 23em;
    border-radius: 15%;
}

.course-desc-section h1 {
    color: #000000;
    font-size: 4.5rem;
    margin: 0 auto;
}

.course-desc-section p {
    color: #000000;
    font-size: 1rem;
    font-weight: 200;
}

.difficulty-section {
    margin-right: 3em;
}

.difficulty-section p {
    font-weight: 300;
    margin-bottom: 1px;
}

.difficulty-section img {
    height: 1.2em;
    width: 1.2em;
}

.course-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 1em;
}



/* Content dropdown */
.course-content h1 {
    font-size: 2rem;
    letter-spacing: 0.1em;
}

/* dropdown menus */
.dropdown-box {
    display: flex;
    justify-content: center;
    padding: 1em;
    width: 55em;
    min-height: 15em;
    font-size: 1rem;
    left: 0px;
    background: #FFFFFF;
    box-shadow: 0px 4px 32px 1px rgba(54, 55, 57, 0.07);

}


details {
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.15s linear;
}


summary {
    justify-content: center;
    background: #1750AF;
    color: #FFFFFF;
    width: 51em;
    padding: 1em;
    padding-left: 33px;
}

.menu-item {
    cursor: pointer;
    padding: 1em;
    width: 51.9em;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-radius: 4px;
    right: 0;
}

.menu-item:hover,
.menu-item:focus {
    background: #84b1ff69;
}

