body {
    font-family: cursive;
    background-color: #1C1C1D; /* Light Gray */
    margin: 0;
    padding: 0;
    color: #DEE1E4; /* Black */
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow-x: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #262829; /* Dark Blue */
    padding: 10px 20px;
    width: 100%; /* Make the navbar full width */
    height: 65px;
    box-sizing: border-box; /* Ensure padding is included in the width */
    border-bottom: 1px solid #DEE1E4;
}

.logo {
    color: #DEE1E4; /* White */
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    color: #DEE1E4; /* White */
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.nav-links li a:hover {
    background-color: #6E7073; /* New hover color */
    border-radius: 5px;
    transform: scale(1.1); /* Pop-up effect */
}

header {
    margin: 20px;
    text-align: center;
}

section {
    margin: 20px auto;
    padding: 20px; /* Increased padding for a larger container */
    background: #262829; /* White */
    border-radius: 8px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.5);
    max-width: 1200px; /* Increased max-width for a larger container */
}

.paragraph {
    line-height: 1.6;
}

.courses li a{
    color: #DEE1E4; /* White */
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.courses li a:hover {
    color: #6E7073; /* hover color */
    border-radius: 5px;
    transform: scale(1.1); /* Pop-up effect */
}

form {
    background: #1C1C1D; /* White */
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

form label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #ccc;
}

form input, form textarea {
    font-family: cursive;
    background-color: #DEE1E4;
    color:#262829;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    resize: none; /* Prevent resizing of text area */
}

form button {
    font-family: cursive;
    background-color: #525253;
    color: #DEE1E4; /* White */
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #6E7073; /* Teal */
}

a {
    text-decoration: none;
    color: #DEE1E4; /* Black */
    transition: color 0.3s;
}

a:hover {
    color: #0EA5E9; /* Teal */
}

a:hover::after {
    content: " (" attr() ")"; 
    font-size: 0.8em;
    color: gray;
}

ol li, .choose li, .info li {
    margin-bottom: 10px;
}

pre{
    background-color: #1C1C1D;
    color: #DEE1E4;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 15px;
}

.output {
    background-color: #262829;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-family: cursive;
}