body {
    background-image: linear-gradient(to right, black , gray);
    font-family: "Arial";
    padding: 30px;

}
header, section {
    text-align: center;
    background-color: white;
    padding: 15px;
    margin: 30px;
    border-radius: 30px;
}
section {
    text-align: left;
    background-color: lightblue;
}
section:hover{
    background-color: lightblue;
    transform: scale(1.03);
    transition: transform .9s ease;
    cursor: pointer;
}
h1 {
    color: red;
}
h2 {
    text-align: center;
    color: blue;
}
ul li {
    padding-left: 20px;
    list-style: circle;
}
#red-h2 {
    color: red;
}
dt {
    color: black;
}
dd {
    font-style: italic;
}
a {
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
    color: white;
    margin: auto;
}


