/* ---------- GENERAL STYLING ---------- */

@font-face{
    font-family: "Otto-Medium";
    src: url('../fonts/otto.medium.ttf'),
    url('../fonts/otto.medium.ttf'); /* IE */
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3SZ2oysoEQEeKwjgmXLRnTc.ttf) format('truetype');
}

body {
    background-color: white;
}

body, input, textarea {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 16px;
    line-height: 150%;
}

.text-center {
    text-align: center;
}

p.otto {
    font-family: Otto-Medium, "Open Sans", Helvetica, sans-serif;
    font-size: 50px;
    line-height: 80%;
}

.italics {
    font-style: italic;
}

/* ---------- MAIN HEADER & NAVIGATION ---------- */

div.nav-holder {
    width: 100%;
}

div.navigation {
    font-family: 'Otto-Medium', Helvetica, Arial, sans-serif;
    font-size: 40px;
    line-height: 100%;
    margin: 0 auto;
    text-align: center;
    width: 95%;
}

div.logo {
    font-size: 60px;
}

div.navigation a {
    text-decoration: none;
    color: black;
    margin: 15px;
}

.no-underline a {
    text-decoration: none;
}

div.navigation a.navigation:hover {
    text-decoration: underline;
}

div.content-holder {
    width: 100%;
}

div.content {
    margin: 0 auto;
    padding-top: 10px;
    width: 95%;
}

div.footer {
    clear: both;
    background-color: white;
    bottom: 0;
    height: 40px;
    margin-bottom: 0;
    /*position: fixed;*/
    width: 100%;
}

div.footer-inner {
    display: table;
    margin: 0 auto;
}

div.footer-inner.small {
    font-size: 80%;
}

div.footer-item {
    display: table-cell;
    padding: 5px;
}

/* ---------- HOME/INDEX & ABOUT ---------- */

img.main-pic {
    width: 45%;
}

div.clear {
    clear: both;
    margin: 0 auto;
    width: 100%;
}

div.home, div.main-pic, div.about-pic {
    float: left;
}

div.about-pic {
    padding: 10px;
    width: 23%;
}

img.about-pic {
    width: 100%;
}

div.home {
    padding: 5px;
    width: 280px;
}

div.main-pic {
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

div.small {
    font-size: 8pt;
}

div.home {
    padding: 5px;
    min-width: 280px;
    width: 45%;
}

@media screen and (max-width: 480px) {
    .main-pic, .about-pic {
        width: 100%
    }
}

/* ---------- LOVE NOTES / REVIEWS ---------- */

div.review {
    background-color: #fffcef;
    border: solid grey 1px;
    border-radius: 15px;
    display: inline-table;
    margin: 10px;
    padding: 20px;
    width: 250px;
    -webkit-box-shadow: 10px 10px 5px -5px rgba(0,0,0,0.19);
    -moz-box-shadow: 10px 10px 5px -5px rgba(0,0,0,0.19);
    box-shadow: 10px 10px 5px -5px rgba(0,0,0,0.19);
}

div.review-pic {
    background-color: inherit;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

div.review div.title {
    font-family: Otto-Medium, Helvetica, Arial, sans-serif;
    font-size: 50px;
    line-height: 100%;
}

div.review div.reviewed {
    font-style: italic;
    font-size: 12px;
}

/* ---------- SERVICES ---------- */

.services-pic {
    margin: 15px;
    padding: 20px;
    width: 200px;
}

div.services div.service-div {
    display: inline-table;
}

div.service-div {
    width: 280px;
}

div.services table, div.fine-print {
    border: double grey 6px;
    border-radius: 15px;
    margin: 15px;
    padding: 20px;
}

div.services table .title,
    div.services table .price,
    div.fine-print .title
{
    font-family: Otto-Medium, Helvetica, Arial, sans-serif;
    font-size: 50px;
    line-height: 100%;
}

div.services table .item {
    width: 300px;
}

div.separator {
    margin: 25px;
}

div.fine-print {
    padding: 10px;
    width: 95%;
}

/* ---------- CONTACT FORM ---------- */

.form-element {
    clear: both;
    float: left;
    padding: 5px;
    position: relative;
    width: 100%;
}

div.label-div, div.element {
    float: left;
    padding: 10px;
}

div.element {
    width: 70%;
}

div.label-div {
    width: 150px;
}

input:not([type=submit]), .form-element select , .form-element textarea {
    border: solid 1px silver;
    border-radius: 10px;
    margin-left: 25px;
    padding: 5px;
    width: 100%;
}

input[type=submit] {
    border: solid 1px silver;
    border-radius: 10px;
    cursor: pointer;
    margin-left: 25px;
    padding: 5px;
    width: 100px;
}

.contact-bottom {
    clear: both;
    padding-top: 50px;
}

.submissions-table {
    width: 100%;
}

.submissions-table th, .submissions-table td {
    border: 1px solid silver;
}