body{
    margin: 0px;
    font-family: "lato", Arial, Helvetica, sans-serif;
}

p {color: blue;background-color: yellow;
}
h3{
    color: blue;
}
P::first-letter {
    font-weight: bold;color: red;font-size: 40px;
}
.emphasis {
    background-color: red;
    display: inline;
}
/*Nav styles*/
.nav-wrapper {
    display: flex;
    font-size: 20px;
    justify-content: space-between;
    padding: 20px;
    overflow: hidden;
    position: fixed;
    float: none;
    background-color: black;
    top:0;
    width: 97%;
    
}

.left-side {
    display: flex;
    font-size:x-large;
    font-weight: 600;
    color: white;
}

.right-side {
    display: flex;
    font-size: x-large;
    font-weight: 800;
  color: white;
}

.nav-wrapper > .left-side > div {
    margin-right: 20px;
    font-size: 0.9em;
    text-transform: uppercase;
}
.nav-link-wrapper {
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}
.nav-link-wrapper a {
    color: #c4bdbd;
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom:red;

}

.nav-link-wrapper a:hover {
    color: red;
}
.active-nav-link {
    border-bottom: 1px solid whitesmoke;
}

.active-nav-link a {
    color: white !important;
}
/*About page*/
.two-column-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80%;
    width: 100%;
    
}
.profile-image-wrapper img {
    width: 75%;
}

.profile-content-wrapper {
    padding: 20px;
}

.profile-content-wrapper h1{
    color: lightseagreen;
}
/*.container{
    max-width: auto;
    margin: auto
    /*background: #f2f2f2;
    /*overflow: auto;*/


/*.contentframe{
        position: relative;
        height: 100%;
        background-attachment: fixed;
}*/

