﻿body {
    background-color: #ecf1d1;
    margin: auto;
    padding: 0;
}
footer {
    background-color: #808080;
    text-align: center;
    font-style: italic;
    margin-top: auto; /* pushes footer to bottom naturally */
}
body { /* Or your main container div */
    min-height: 100vh; /* Ensures it takes full viewport height */
    display: flex;
    flex-direction: column;
}

main { /* Or your main content div */
    flex-grow: 1; /* Allows the main content to take up available space */
}

footer {
    bottom: 0;
    left: 0;
    width: 100%;
    /* Add other styling like background-color, padding, z-index if needed */
}
header {
    background-color: #808080;
}
#logo {
    height: 84px;
    width: 150px;
}
#navBut {
    height: 75px;
    width: 75px;
}
/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f1f1f1;
}
/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    .sidenav a {
        font-size: 18px;
    }
}
#opnbtn {
    background-color: transparent;
}
#heading {
    display: flex;
    justify-content: space-between;
    background-color: #808080;
}
.button {
    background-color: #0ea1aa;
    border: none;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    width: 100px;
    border-radius: 50px;
}
/* Style all font awesome icons */
.fa {
    padding: 1%;
    font-size: 5%;
    width: 5%;
    text-align: center;
    text-decoration: none;
    border-radius: 35%;
}
    /* Add a hover effect if you want */
    .fa:hover {
        opacity: 0.7;
    }
/* Set a specific color for each brand */
/* Facebook */
.fa-facebook {
    background: #3B5998;
    color: white;
}

/* Twitter */
.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-instagram {
    background: #325685;
    color: white;
}

.fa reddit {
    background: #ff6600;
    color: white;
}