﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
   
}
.WildWatchers{
    display: flex;
}
.WWIcon{
    width:80px;
    height:80px;
}
header {
    display: flex;
    position: sticky;
    top:0;
    z-index: 1000;
    background-color:#172D13;
    color: white;
    padding: 10px;
    text-align: center;
}
header h1 {
     text-align: left;
     font-family: Arial;

}
header nav {
     display:flex;
     margin-left: 520px;
     background-color: #172D13;
     color: white;
     padding: 30px;
     padding-right:0px;
     text-align: center;
}
nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 20px;
    border-radius:4px;
}
nav a:hover{
    background-color:#6BB77B;
}
.LoginLogoutButton {
    color: #fff;
    background-color: #D76F30;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size:20px;
    margin-left: 18px;
}
.LoginLogoutButton:hover{
    background-color:#6bb77B;
}
.content{
    padding-top:200px;
}
.footer {
    background-color: #172D13;
    color: #fff;
    padding: 20px 0;
    padding-bottom:0px;
}
.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 20px;
}
.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}
#footer-logo {
    width:60px;
    height:60px;
    padding-bottom: 10px;
}
.footer-section-links,
.footer-section-contact,
.footer-section-social,
h2 {
    padding-bottom: 20px;
}
.footer-section p, .footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: white;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}
.footer-section ul li a:hover {
    text-decoration: underline;
}
.social-icon {
    display: flex;
}
.social-icon img {
    padding-right: 10px;
    width:30px;
    height:30px;
}
.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #fff;
}