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

/* CSS Reset */

    {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

/* Body */

body {
    margin: 10px;
    padding: 10px;
    background-color: gray;
    font-family: Roboto, cursive;

}

/* Container and Main */

.container {
    width: 960px;
    background-color: white;
    margin: 0 auto;
    height: 100%;
    box-shadow: 4px -8px 32px 0px rgba(0, 0, 0, 0.75);
}

div {
    display: block;
}

header {
    overflow: hidden;
    padding: 20px 10px;
    background-image: url(../images/kids.png);

    background-size: auto;
    background-color: dodgerblue;
}

header a {
    float: left;
    text-align: center;
    color: black;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
}

}

header a.logo {
    font-size: 50px;
    font-weight: bold;
}

.header-right {
    float: right;
}

/*Nav Tag*/

nav ul li {
    background-color: gainsboro;
    margin: 10px;
    padding: 0;
    border: 10px;
    display: inline-block;
}

/*Unordered List Tag*/

ul {
    list-style: none;
}

header a:hover {
    background-color: #ddd;
    color: black;
}

header a.active {
    background-color: black;
    color: white;
}

/*Header Tags 1 & 2 */

h1 {
    font-family: 'Lobster|Roboto';
    font-size: 60px;
    margin: 10px 0;
    color: white
}

h2,
h3,
h5 {
    font-size: 30;
    margin: 10px 0;
    text-align: center;
}

/*Paragraph Tag*/

p {
    text-indent: inherit;
    font-size: 16px;
    margin: 10px 0;
    line-height: inherit;
    text-align: left
}

p a:link {
    font-weight: bold;
    color: firebrick;
}

p a:visited {
    color: blue;
    outline: 0;
}

/* Header Tag */

/*Main Tag*/

main {
    margin: 20px 0;
    padding: 0 20px;
}

#img{
    border: 2px solid black;
    width: 100%;
    height: 550px;
    position: relative;
    clear: both;}

.inside {
    background-color: greenyellow;
    margin: 10px;
    padding: 10px;
    font-size: 20px;
    display: block;
}

/* Section Content*/

content {
    text-align: center;
    margin: 20px 100px;
}


/*Footer Tag */

footer {
    background-color: dodgerblue;
    padding: 10px 0;
    text-align: center;
}

footer ul li {
    margin: 0 10px;
    display: inline-block;
}

footer p {
    color: #fff;
    margin: 0;
    text-align: center;
}

footer p span {
    color: white;
}

.social-media {
    margin-bottom: 5px;
}

.social-media img {
    width: 32px;
    height: 32px;
}

/* Show which page we are on */

.active {
    font-weight: bold;
    text-decoration: underline;
}

/* Contact Page */

.field {
    font-size: 15px;
    display: block;
    padding: 5px 10px;
    margin: 10px auto;
    border: 1px solid grey;
    border-radius: 3px;
    width: 220px;
}

.button {
    font-size: 14px;
    border: 1px solid grey;
    padding: 5px 10px;
    border-radius: 3px;
}


/*Phone that are 480px and under*/

@media screen and (max-width: 480px) {
    .container {
        width: 95%;
    }

    .content {
        text-align: center;
        margin: 20px 10px;
    }
    #logo {
        color: #D76300;
    }
}

/*Tablet that are 768px and under*/

@media screen and (max-width: 768px) {
    .container {
        width: 95%;
    }

    #logo {
        color: firebrick;
    }
}

/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {
    .container {
        width: 95%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1200px) {
    .container {
        width: 95%;
    }
}
