/* Base styling */

body {
    background-color: rgb(0, 170, 255);
    font-family: comic sans ms;
    padding: 10px
        /*inside of our tag, margins is outside of the tag */
}

header,
section {
    text-align: center;
    background-color: blanchedalmond;
    padding: 15px;
    margin: 30px;
    border-radius: 20px;
    box-shadow: 0 7px 10px rgba(0, 0, 0, .85);
}

section {
    text-align: left;
    background-color: white solid plum;
    border-left: 30px;
}

sectionhover {
    background-color: rgb(79, 9, 145);
    transform: (1, 1);
    transition: transform .8s ease;
}

h1 {
    color: red;
}

h2 {
    text-align: center;
    color: rgb(20, 123, 241);
}

ul li {
    padding-left: 20px;
    list-style-type: "";
}

#lastsection {
    color: red;
}

#lastsesction span {
    color: green;
}

dt {
    color: green;
}

dd {
    font-style: italic;
}