* {
    font-family: "Inter", sans-serif;
}
body {
    display: flex;
}
.content {
    overflow-y: scroll;
    flex-grow: 1;
    padding: 1.5rem 3rem;
}

main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

a {
    text-decoration: none;
    color: black;
}
a:active {
    color: black;
}
h1 {
    font-size: 3rem;
}
h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #7f7f7f;
    margin-bottom: 2rem;
}
h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #7f7f7f;
    margin-bottom: 0.25rem;
}

.bread-crumb {
    margin: 1rem 0;
}

.bread-crumb p {
    font-size: 1rem;
}

.bread-crumb p a {
    color: #808080;
    text-decoration: none;
}

.bread-crumb .choosen {
    color: #19a89d;
    font-weight: bold;
}



.video > iframe{
    margin-bottom: 2rem;
}

.selections {
    display: flex;
    gap: 2.25rem;
}

.module select {
    padding: 0.75rem 1rem;
    width: 12rem;
    font-size: 1rem;

}
.module select:not([disabled]) {
    border: 1px solid #19a89d;
}


.submitButton {
    margin-top: 2rem;
    width: 40rem;
    padding: 1rem 2rem;
    background-color: #19a89d;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

.submitButton:active {
    background-color: #127b72;
}
.submitButton:disabled {
    background-color: #c7c7c7;
    cursor: not-allowed;
}

.container{
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}


.recommendation {
    padding: 0 3rem;
    border-left: 1px solid #f2f2f2;
}

@media screen and (max-width: 1600px) {
    .container{
        flex-direction: column;
    }
    .recommendation {
        border: 0;
        padding: 0;
    }
}
.recommendation_cards{
    display: flex;
    justify-content: space-between;
    width: 30rem;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #E6E6E6;
}
