body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

header{
    padding: 0px;
    flex-wrap: wrap;
    border-radius: 10px;
}

header h1 {
    padding: 15px 100px;
}

nav {
    background-color: #3498db;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1vw 8vw;
    color: #fff;
    text-align: right;
}

nav img {
    cursor: pointer;
    width: 150px;
}

nav .links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}  

nav a {
    color: white;
    text-decoration: none;
    margin-right: 50px; /* Add margin to the left for spacing */

}

nav a:hover {
    text-decoration: underline;
}

.section {
    margin: 20px;
}
.title p {
    color: black;
    text-transform: capitalize;
    padding: 15px;
    font-size: 55px;
}

/* Course Description and Learning Outcomes */
.course-description, .learning-outcomes {
    margin: 20px;
    padding: 20px;
    background-color: #dae7ec;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.course-description h2, .learning-outcomes h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: rgb(79, 177, 33);
}

.course-description p, .learning-outcomes ul {
    font-size: 1rem;
    line-height: 1.6;
}

.learning-outcomes ul {
    list-style-type: disc;
    margin-left: 20px;
}

.learning-outcomes li {
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
  }

.section {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    line-height: 1.6;
}

.section h2 {
    color: #3498db;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px; /* Increase the margin between flex containers */
}

.flex-box {
    flex: 1;
    margin-right: 20px;
}

.label {
    background-color: #3498db;
    color: #fff;
    padding: 5px;
    text-align: center;
    border-radius: 5px 5px 0 0;
}

.Singular-part,
.Plural-part {
    padding: 10px;
    border-radius: 0 0 5px 5px;
    background-color: #fff;
    text-align: center; /* Center the paragraphs */
}

.Singular-part span{
    background-color: #34db95;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    margin: 0 2px;

}

.Plural-part span {
    background-color: #e17a63;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    margin: 0 2px;
}

.label-column {
    display: flex;
    flex-direction: column;
    margin-right: 20px; /* Increase the margin between vertical labels and flex boxes */
}

.vertical-label {
    background-color: #3498db;
    color: #fff;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
}

.use-container {
    justify-content: space-between;
    margin-bottom: 30px; /* Increase the margin between flex containers */
}
.practice {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.practice a {
    background-color: #3498db;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.practice a:hover {
    background-color: #82a9c6;
}
