/* 
name:   zikai wang
id:     wangz199
course: cse 383 
project:hw4-f21
*/

html{
    text-align: center;
}

#title1 {
    text-align: left;
    color: red;
    text-decoration: underline;
}

#title2 {
    text-align: left;
    color: green;
    text-decoration: underline;
}

#title3 {
    text-align: center;
    color: blue;
    text-decoration: overline;
}

.div1 {
    padding: 15px;
    margin: 15px;
    margin:auto;
    width: 550px;
    height: 300px;
    border-color: blue;
    border-style: dashed;
    border-width: 21px;
}

.div2 {
    float: right;
    padding: 15px;
    margin: 15px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: 150px;
    width: 550px;
    height: 600px;

    border-top: 15px solid darkgreen;
    border-bottom: 15px solid lightgreen;
    border-left: 15px solid darkgreen;
    border-right: 15px solid lightgreen;
    border-radius: 25px;
}

.div2-item a +p {
    margin-top:-3px;
}

.div3 {
    float: left;
    padding: 15px;
    margin: 15px;
    margin-top: 100px;
    margin-left: 150px;
    margin-right: auto;
    width: 550px;
    height: 900px;

    border-top: 15px double red;
    border-bottom: 15px double red;
    border-left: 15px double red;
    border-right: 15px double red;
    border-top-left-radius: 0px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 0px;
}

.div1 li a{
    text-decoration: none;
}