@charset "UTF-8";

/* CSS Document */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#home {
    background-image: url("images/elephant.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 100vh;
}

#header {
    padding: 30px 50px;
}

h1 {
    color: #30451F;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 300%;
    font-weight: normal;
    margin: 0;
	text-align: center;
}

h2 {
    color: #30451F;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    letter-spacing: 5px;
    margin-top: 5px;
	text-align: center;
}

#navigation {
    text-align: right;
    margin-top: -50px;
}

#navigation a {
    color: #30451F;
    font-weight: bold;
    text-decoration: none;
    margin: 0 20px;
}

#navigation a:hover {
    color: #8A6D3B;
}

#homecontent {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    text-align: center;
}

#homecontent h3 {
    color: #30451F;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 200%;
    font-style: italic;
    line-height: 1.4em;
}

#homecontent p {
    color: #222222;
    font-size: 110%;
    line-height: 1.6em;
}

.button {
    display: inline-block;
    background-color: #30451F;
    color: #FFFFFF;
    padding: 15px 30px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #8A6D3B;
}

/* INNER PAGES */

.pagetitle {
    background-color: #30451F;
    padding: 15px;
    text-align: center;
}

.pagetitle h2 {
    color: #FFFFFF;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 250%;
    letter-spacing: normal;
    margin: 0;
}

#missioncontent {
    width: 80%;
    margin: 40px auto;
}

#missioncontent img {
    width: 45%;
    border-radius: 10px;
}

.missiontext {
    width: 45%;
    float: right;
}

.missiontext h3 {
    color: #30451F;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 170%;
}

.missiontext p {
    color: #333333;
    font-size: 110%;
    line-height: 1.6em;
}

.missiontext h4 {
    background-color: #EEE8D5;
    color: #30451F;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

#footer {
    clear: both;
    background-color: #30451F;
    color: #FFFFFF;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
} 

/* ANIMALS PAGE */

#animalscontent {
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

.animal {
    display: inline-block;
    width: 28%;
    margin: 1%;
    padding: 15px;
    vertical-align: top;
    border: 1px solid #A8A08B;
    border-radius: 10px;
}

.animal img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.animal h3 {
    color: #30451F;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 150%;
}

.animal p {
    color: #333333;
    line-height: 1.5em;
}