
/* BODY */
body{
background:#f4f4f4;
width:100%;
height:100%;
color:#333;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
margin:0;
}

/* HEADER */
header{
background:#222;
color:white;
padding:20px;
text-align: center;
}

/* footer */
footer{
clear:both;
background:#2c3e50;
color:white;
padding: 15px;
text-align: center;
margin-top: 40px;
}

.hero-image{width:100%;height:auto}

/* Tablet */
@media (max-width:768px){
    nav ul{flex-direction:coloumn;
    text-align: center;}
    section{
        padding:10px;
    }
}

/* Mobile */
@media (max-width:480) {
    h1,h2{font-size: 20px;}

    nav ul li{
        display: block;
        margin: 10px 0;
    }
    
}

/* headings */
h1{font-family: Georgia, 'Times New Roman', Times, serif;
    color:#1c3147}
h2{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color:#07539f;
    text-align: center;
    
}

/* NAVIGATION */
nav ul{
    list-style: none;
    padding:0%;
    margin: 10px;
}

nav ul li{
    display:inline-block;
    margin: 15px;
}
/* LINKS */
a{
 text-decoration: none;
 color: #3498db;
 font-size: 18px;
 font-weight: bold;
}
a:hover{
    color:#e74c3c
}
/* SECTIONS */
#home{
    float:left;
    width: 40%;
    margin: 30px;
    padding: 20px;
    background: white;
    border-radius: 5px;
}
.info{
    float:right;
    width: 40%;
    margin: 30px;
    padding: 20px;
    background: white;
    border-radius: 5px;
}
/* Hero Image */
.hero-image{
    width: 100%;
    margin-top: 10px;
    height: auto;
    border-radius: 5px;
}
figcaption{
    text-align: center;
    color: #a81302;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    font-style: italic;
    margin-top: 10px;
    font-weight: bold;
    
}
/* About page styling */
.about{
    max-width: 900px;
    margin:auto;
    padding: 30px;
    text-align: center;
}
.about h2{
    margin-bottom: 15px;
    color: #333;

}
.about p{
    margin-bottom:15px;
    line-height: 1.6;
    color: #555;
}
.small-image{
    width: 350px;
    height: auto;
    display: block;
    margin: 20px auto;
    
}



