/* Reset Rule */
* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color: salmon;
    padding-bottom: 500px;
}

/*
selector {
    declaration 1;
    property1: value;
    property2: value;
}
*/

h1 {
    text-align: center;
    color: crimson;
    border: 8px groove darkred;
    margin: 24px;
    margin-bottom: 100px;
    padding: 16px;
    /*Create stripes as a background */
    background-image: repeating-linear-gradient(90deg, yellow, yellow 50px, pink 50px, pink 80px);
    position: relative;
}

/* descendent selector */
h1 span {
    position: absolute; bottom: -100px; right: 100px;
}

/* ID selector and a group selector */
#div1, #div2 {
    width: 600px; height: 100px;
    border: 20px solid darkred;
    margin: 50px auto; 
}

#div2 {
    width: 200px; height: 200px;
    border: 8px solid darkred;
    /* border-radius: 50%; round */
    transform: rotate(45deg);
}

/* class selector */
.button1 {
    padding: 12px 16px;
    background-color: #eee; color: #222;
    border: 2px solid darkred;
    margin: 8px;
}

.button2 {
    display: block;
    width: 100px; height: 100px;
    border-radius: 50%;
    margin: 10px auto;
    background-color: #FFC;
    text-align: center;
    line-height: 100px;
}

dt {
    font-weight: bold;
    margin-left: 100px;
    font-size: 120%;
    margin-top: 20px;
}

dd {
    margin-left: 30px;
    font-style: italic;
}

dd ul {
    margin-left: 30px;
}