/* sets background image to cover entire screen */
body
{
background-image: url("../images/Emilia in Naginga, Angola (Tola Akindipe).jpg");
background-size: cover;
height: 100vh;
display: flex;
align-items: center;
position:relative;
margin:0;
}

/* sets logo name and navigation to right */
.rightnav{
width:100%;
padding-right:10%;
text-align:right;
}

.rightnav .row{
padding-bottom:30px;
}


/* font and color styling for logo and links */
h1,h2,a
{
color:#FFFFFF;
font-family: 'Nunito Sans', sans-serif;
font-weight: bold;
margin-top:0px;
font: bold;
text-shadow: rgba(255,255,255,.1) -1px -1px 1px,rgba(0,0,0,.5) 1px 1px 1px;
}

/* Tola big text */
h1
{
font-size:50px !important;
margin-bottom:0px;
}

/* Photographer text */
h2
{
font-size:30px !important;
}

/* Navigation links */

li{
list-style-type:none !important;
margin-bottom:10px;
}

/* Hide underline from links */
a {
text-decoration:none !important;
font-size:20px !important;
}

/* Link hover color change effect */
a:hover{
color:#0072bc;
}

/* Transparent footer */
footer {
position: fixed;
font-size:13px;
left: 0;
bottom: 0;
width: 100%;
background-color: #ffffff1f;
border-top:1px solid #ffffff42;
color: white;
text-align: center;
}

footer p{
font-family: 'Nunito Sans', sans-serif;
font-size:15px;
color: black;
font-weight: bolder;
}

@media screen and (max-width: 800px) {

  body
  {
    background-position: -60px
  }

}

