﻿*{
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #333;
    color: peachpuff;
}

.navbar {
    display: flex;
    position: relative;
    justify-content: space-around;
    align-items: center;
    background-color: #333;
    color: white;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
    color: peachpuff;
}
.navbar-links {
    height: 100%;
}

    .navbar-links ul {
        display: flex;
        margin: 0;
        padding: 0;
    }

    .navbar-links li {
        list-style: none;
    }

        .navbar-links li a {
            display: block;
            text-decoration: none;
            color: peachpuff;
            padding: 1rem;
        }

        .navbar-links li:hover {
            background-color: #555;
        }

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

    .toggle-button .bar {
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 10px;
    }



@media (max-width: 800px) {
    .brand-title {
        font-size: 1.2rem;
        margin: .5rem;
        color: peachpuff;
    }


    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

        .navbar-links ul {
            width: 100%;
            flex-direction: column;
        }

            .navbar-links ul li {
                text-align: center;
            }

                .navbar-links ul li a {
                    padding: .5rem 1rem;
                }

        .navbar-links.active {
            display: flex;
        }
}


/* Background Styles Only */

@import url('https://fonts.googleapis.com/css?family=Raleway');

* {
    font-family: Raleway;
}

.welcome{
    max-width:100%;
    height:60px;
    text-align:center;
    background-color:wheat;
}
.body {
    max-width: 100%;
    padding-left: 70px;
    padding-right: 70px;
    margin-top: 30px;
    position: relative;
    text-align: center;
    margin-left: 0;
    height: 100%;
    position: relative;
}

    .body p {
        font-family: 'Lucida Sans';
        color: peachpuff;
    }

        .body p a {
            text-decoration: underline;
            color: wheat;
        }

.Into {
    text-align: center;
    max-width: 100%;
    height:400px;
    overflow:hidden;
}
@media only screen and (max-width: 770px) {
    .Into {
        text-align: center;
        max-width: 100%;
        height: 180px;
        background-color: red;

    }
    .Into img{
        max-height:200px;
    }
} 


.Intro {
    max-width: 100%;
    margin-top: 10px;
    text-align: center;
    position: relative;
    height: 50px;
    position: relative;
}
footer {
    background-color: darkslategrey;
    height: 70px;
    text-align: center;
    padding-top: 10px;
}