*{
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', sans-serif;
}

body{
    background: url("DSC_0404.JPG") fixed;
    background-size: cover;
    background-position: center;
}

#header{
    width: 80%;
    background-color: rgba(255,255,255, 0.7);
    margin: 100px auto 0 auto;
    user-select: none;
    box-shadow: 0 0 2px 4px rgba(0,0,0, 0.1);
}

#logo{
    height: 80px;
}

.quote{
    font-style: italic;
    color: #444;

}

#bottom{
    bottom: 0;
    border-top: 1px solid #222;
}

.nav-link{
    text-decoration: none;
    color: #222;
    padding: 10px 10px;
    border-right: 1px solid #222;
    font-size: 15px;
    display: inline-block;
    transition: 0.5s;
}

.nav-link:hover{
    background-color: #f3f3f3;
    transition: 0.5s;
}

.active{
    background-color: #efefef;
}

.main-content{
    width: 80%;
    background-color: rgba(255,255,255, 0.7);
    box-sizing: border-box;
    padding: 25px;
    margin: 50px auto;
    box-shadow: 0 0 2px 4px rgba(0,0,0, 0.1);
}

dl{
    padding-left: 20px;
}

dt{
    font-weight: bold;
    margin-top: 10px;
    font-size: 20px;
}

dd{
    font-size: 20px;
}

h2{
    margin-top: 20px;
    color: #222;
}

p{
    font-size: 20px;
    margin-top: 20px;
    color: #222;
}

.inset{
    padding: 25px;
    background-color: #00aeef;
    margin: 25px -25px 0 -25px;
    color: #eff4ff;
}

.ph{
    width: 300px;
    display: inline-block;
    float: left;
}

.ph2{
    width: 200px;
    height: 300px;
    background-color: dodgerblue;
    display: inline-block;
    float: left;
}

.property{
    margin-top: 50px;
    display: flex; /* Enables Flexbox */
    align-items: center; /* Centers items vertically */
}

.right{
    display: inline-block;
    padding-left: 25px;
    min-height: 225px;
    width: 50%;
}

.right h2{
    margin-top: 0;
}

.right h3{
    color: #555;
}


