﻿* {
    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;
        }
}
.Into {
    text-align: center;
    max-width: 100%;
    height: 400px;

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

    }

        .Into img {
            max-height: 200px;
        }
        iframe{
            max-width:100%;
        }
}

.body {
    width: 100%;
    padding-left: 70px;
    padding-right: 70px;
    margin-top: 30px;
    text-align: center;

}




    .body p a {
        text-decoration: underline;
        color: wheat;
    }
footer {
    background-color: darkslategrey;
    height: 70px;
    text-align: center;

}
.Intro {
    max-width: 100%;
    margin-top: 10px;
    text-align: center;

    height: 50px;
    position: relative;
}