#title {
    background-color: mediumslateblue;
    font-size: 70px;
    font-weight: bolder;
    color: lavender;
    text-align: center;
    height: 130px;
    padding: 10px;
    margin: 0;
    line-height: 1.8;
    letter-spacing: 1px;
    word-spacing: 2px;
    text-transform: uppercase;
    border-radius: 10px;
    outline: none;
    cursor: default;
    transition: background-color 0.3s ease-in-out;
    opacity: 0.7;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font: italic;
}

#name {
    font-size: 44px;
    font-weight: bolder;
    color: silver;
    text-align: center;
    height: 39px;
    padding: 10px;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 1.5px;
    word-spacing: 1px;
    text-transform: capitalize;
    border-radius: 5px;
    outline: none;
    cursor: default;
    transition: color 0.3s ease-in-out;
    opacity: 0.95;
    box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.2);
}

.description {
    background-color: pink;
    font-size: 44px;
    font-weight: bolder;
    color: royalblue;
    text-align: center;
    height: 90px;
    padding: 10px;
    margin: 0;
    line-height: 2.3;
    letter-spacing: 1.5px;
    word-spacing: 2px;
    text-transform: capitalize;
    border-radius: 5px;
    outline: none;
    cursor: default;
    transition: color 0.3s ease-in-out;
    opacity: 0.85;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.MrYoo {
    background-color: ghostwhite;
    font-size: 20px;
    width: 500px;
    height: 30px;
    border: 3px gray outset;
    border-radius: 3px;
    color: darkviolet;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
    text-align: center;
    line-height: 1.5;
    display: inline-block;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.image {
    background-color: lightgreen;
    color: black;
    font-size: 28px;
    padding: 7px;
    margin: 8px;
}

#project {
    background-color: ivory;
    text-decoration: none;
    color: lightblue;
    font-size: 30px;
    padding: 2px;
    margin: 9px;
    line-height: 1.2;
    word-spacing: 2.5px;
    letter-spacing: 1px;
    text-align: center;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.project:hover {
    color: royalblue;
    text-decoration: underline;
}

#elements {
    background-color: powderblue;
    padding: 20px;
    margin: 10px;
    border: 8px black;
    border-radius: 45px;
    box-shadow: 2px 1px 2px rgba(0, 0, 2, 0.2);
    outline: none;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 81vh;
    display: block;
    width: 130%;
    transition: background-color 0.3s ease-in-out;
}

#lists {
    width: 500px;
    background-color: steelblue;
    padding-left: 22px;
    padding-top: 10px;
    padding-bottom: 13px;
    border: 2px solid darkred;
    border-radius: 9px;
    outline: none;
    box-shadow: 1px 3px 6px rgba(1, 1, 1, 1);
    overflow: hidden;
    line-height: 2;
    display: block;
    transition: background-color 0.3s ease-in-out;
}

.list {
    background-color: lightpink;
    color: green;
    font-size: 15px;
    font-weight: bold;
    padding: 50px;
    margin: 2px 0;
    line-height: 1.5;
    text-align: left;
    border-bottom: 1px blue;
    border-radius: 4px;
    outline: none;
    word-spacing: 5px;
    letter-spacing: 1px;
    cursor: default;
    transition: color 0.3s ease-in-out;
}
