
.titleBar {
    display: flex;
}

.nameAndPic {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
    background-color: #6eb1ff;
}


.nameAndPic > #name {
    font-family: 'Work Sans', sans-serif;
    color: white;
    margin-left: auto;
    margin-right: 5px;
}

.nameAndPic > #pic {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 5px;
    margin-right: auto;
}

h1 {
    text-align: center;
}

.courses, #backBtn {
    padding: 20px 10px;
    background-color: #ff816e;
    text-decoration: none;
    color: white;
    border-radius: 5%;
    border: 2px solid #ff816e;
    transition: 0.3s;
}

.courses:hover, #backBtn:hover {
    padding: 20px 10px;
    background-color: white;
    text-decoration: none;
    color: #ff816e;
    border-radius: 20%;
}

.courseList {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
}

.content {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

div.labs {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

a.labs {
    padding: 20px 10px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #ffca6e;
    text-decoration: none;
    color: white;
    border-radius: 5%;
    border: 2px solid #ffca6e;
    transition: 0.3s;
}

a.labs:hover {
    padding: 20px 10px;
    background-color: white;
    text-decoration: none;
    color: #ffca6e;
    border-radius: 20%;
}

div.options {
    display: flex;
    flex-direction: column;
}

#backBtnContainer {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

div.quizQuestion {
    margin-bottom: 50px;
}

div.quiz {
    width: 700px;
}

div.answerKey {
    display: flex;
    flex-direction: column;
}

div.aboutMe {
    text-align: center;
}