*{
    margin: 10px;
}

html {
        background-color: lightblue;
        font-family: 'Lato', sans-serif;
    }    

/*location*/
.floatRight {
    float: right;
    padding: 5px;
    margin: 5px;
}

.floatLeft {
    float: left;
    padding: 5px;
    margin: 5px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/*text*/
h1, h2 {
    font-family: 'Passion+One';
    text-align: center;
    color: lightcyan;
    background-color: midnightblue;
    border: 0;
    border-radius: 10px;
}

h3 {
    font-family: 'Alatsi';
    color: midnightblue;
}

p {
    font-family:'lato';
    font-size: 16px;
    line-height: 20px;
}

#shadow {
    text-shadow:inherit;
}

p strong{
    color:darkblue;
}

.lessbackground {
    font-family: 'Passion+One';
    text-align: center;
    color: lightcyan;
    background-color: midnightblue;
    border: 0;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

figcaption {
    font-size: 12px;
    font-family: 'Lato';
    font-weight: bold;
    text-align: center;
    display: block;
}

/*borders*/
.roundedCorners {
    border: 0;
    border-radius: 20px;
}

.outsetborder {
    border-style: outset;
}

.double {
    border-style: double;
}

.inset {
    border-style: outset;
}

/*lists*/
ul, li {
    font-size: 16px;
    font-family: 'lato';
    line-height: 60%;
}

nav ul li {
    text-transform: uppercase;
    list-style-type: none;
    text-decoration: none;
    text-align: left;
    margin: 5px;
    line-height: 150%;
    color: slategray;
}