body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
}
#wrapper{
    max-width: 960px;
    margin:auto;
}

header{
    background-color: #990178;
    color: #fff;
    padding-left: 2px;
    display: flex;
    flex-wrap: wrap;
    height: 95px;
    
}
header p{
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0px;
}

#smallprint{
    font-size: 1.1rem;
    margin-left: 10px;
    color:#f0f8ff;
   
}

footer{
    /*height:50px;*/
    /*background:#CD21C3;*/
    background-color:#019922;
    color:#ffffff;
    display: flex;
    flex-wrap: wrap;
    
    font-size: 1.1rem;

    align-items: center;
    padding-left: 2px;
    box-sizing: border-box;
    border-style: solid;
    border-width: 5px;
    border-color: #990178;
}

nav{
    background-color: #019922;
    color: #fff;
    padding: 10px;
    
}
article{
    height:auto;
}
menu a {
    display:block;
    text-decoration: none;
    color: #ffffff;
    padding: 5px;
    text-transform: capitalize;
    font-size: 1.2rem;
    
}
menu a:hover {background-color: #990178;}
summary{ cursor: pointer;}
#tablet{
    display:none;
}
.quote{
    font-size: 1.1rem;
    color: #000000;
}
address{
    
    font-size: 1.1rem;
    color: #ffffff;
    padding:10px;

}
footer address a:link {
    color: #ffffff;
    text-decoration: underline;
}
footer address a {
    color: #ffffff;
    text-decoration: none;
}
footer address a:visited {
    color: #ffffff;
}
li{
/*increase line height*/
    line-height: 1.8rem;
}
label{
    display: block;
    margin-top: 10px;
}
.pTitle{
    font-size: 0.9rem;
    text-align: right;
}

/* if width is less than 900px*/
@media screen and (max-width:900px) {
    #smallprint{
        display:none;               
    }
    #tablet{
        display: block;
        font-size: 1.1rem;
        
        padding:15px;
        background-color: #990178;
        color: #ffffff;
    }
    p#tablet{
        margin-top:0px;
        padding-top:0px;
    }
    
}
 /* if width is wider than 500px*/
 @media screen and (min-width:500px) {
    menu{
        display:flex;
        flex-wrap:wrap;
        justify-content: space-between;
       
    }
    menu a {
    display:inline;
    text-decoration: none;
}


 }