* {
    box-sizing: border-box;
}

nav {
    background: whitesmoke;
    height: 50px;
}

a {
    display: inline;
    font-size: 3em;
    text-decoration: none;
    padding: 0px;
}

body {
    background-color: rgb(255, 255, 99);
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

img {
    margin: 12px;
    height: 400px;
    width: 550px;
}

h1, h2 {
    text-align: center;
}

h4 {
    text-align: center;
    font-size: 1.5em;
}

.logos {
    text-align: center;
    font-size: 2em;
    margin-top: 20px;
    word-spacing: 1.5em;
}

@media screen and (max-width: 600px) {
    .logos {
        text-align: center;
        font-size: 1em;
        margin-top: 10px;
        word-spacing: 0.75em;
    }

    .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    img {
        margin: 12px;
        height: 200px;
        width: 350px;
    }

    h1, h2 {
        text-align: center;
    }

    h2 {
        font-size: 1em;
    }
    
    h4 {
        text-align: center;
        font-size: 0.75em;
    }

    nav {
        background: whitesmoke;
        height: 50px;
    }
    
    a {
        display: inline;
        text-decoration: none;
        padding: 0px;
        cursor: pointer;
    }
}
