* {
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    font-family: monospace;
}

body {
    background: #FFD100;
}

header {
    background: transparent;
}

#header-img {
    height: 150px;
    width: 250px;
}

#nav-bar {
    overflow: hidden;
}

#nav-bar .icon {
    display: none;
}

#nav-bar a {
    float: right;
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 20px;
    color: rgb(108, 200, 231);
    font-size: 2rem;
}

.content {
    width: 90%;
    background: #FFFFAA;
    margin: auto;
    padding: 100px;
}


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

form {
    margin: 0px auto;
    text-align: center;
}

#formpar {
    font-size: 50px;
}

input[type="email"] {
    margin: auto;
    width: 400px;
    height: 50px;
}

input#submit {
    margin: auto;
    padding: 30px;
    background: lightskyblue;
    width: 200px;
    height: 30px;
    border-radius: 10px;
}

input[value="Say Hello"] {
    font-size: 1.5em;
    margin: auto;
}

.center {
    margin: 0 auto;
    display: block;
    width: 70%;
    text-align: center;
}
.center h2 {
    font-size: 30px;
}

.center p {
    font-size: 15px;
}

img#cakes {
    width: 500px;
    height: 500px;
    margin: 12px;
    transition: all 1s;
}

img#cakes:hover {
    transform: scale(1.1);
}

#HIW {
    text-align: center;
    font-size: 2.5em;
}

.fa-eye, 
.fa-phone, 
.fa-shopping-cart,
 .fa-truck {
    float: left;
}

#contactus {
    text-align: center;
    font-size: 2em;
    margin-top: 20px;
    word-spacing: 1.5em;
}
.fab {
    transition: all 1s;
}
.fab:hover {
    transform: scale(1.5);
}

.fa-twitter:hover {
    color: lightblue;
}
.fa-facebook-f:hover {
    color: blue;
}
.fa-google:hover {
    color: red;
}

footer {
    text-align: center;
    color: white;
    font-size: 2.5em;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky + .content {
    padding-top: 60px;
}

@media screen and (max-width: 600px) {

    html {
        width: 100%;
        height: 100%;
        font-family: monospace;
    }

    #header-img {
        height: 100px;
        width: 150px;
    }


    .container {
        width: 100%;
        margin: 0px;
        padding: 0px;
    }
    
    #nav-bar {
        overflow: hidden;
    }

    #nav-bar a {
        float: right;
        display: block;
        text-decoration: none;
        text-align: right;
    }

    #nav-bar a:not(:first-child) {
        display: none;
    }

    #nav-bar a.icon {
        float: right;
        display: block;
    }

    #nav-bar.responsive {
        position: relative;
        right: 0;
        top: 0;
    }

    #nav-bar.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .content {
        width: 90%;
        background: #FFFFAA;
        margin: auto;
        padding: 50px;
    }

    #formpar {
        font-size: 1.5em;
    }

    input#email {
        width: 200px;
        height: 30px;
        margin: auto;
        padding: 10px;
    }

    input#submit {
        margin: auto;
        padding: 15px;
        background: lightskyblue;
        width: 100px;
        height: 15px;
        border-radius: 5px;
    }

    input[value="Say Hello"] {
        font-size: 0.9em;
        margin: auto;
    }

    .center {
        margin: 0 auto;
        display: block;
        width: 100%;
        text-align: center;
    }

    .center h2 {
        font-size: 1em;
    }

    .center p {
        font-size: 12px;
    }
    
    img#cakes {
        width: 250px;
        height: 250px;
        margin: 12px;
    }

    #HIW {
        text-align: center;
        font-size: 10px;
    }

    .fa-eye, 
    .fa-phone, 
    .fa-shopping-cart,
    .fa-truck
    {
        float: left;
    }

    #contactus {
        text-align: center;
        font-size: 1.5em;
        margin-top: 15px;
        word-spacing: 1em;
    }

    footer {
        text-align: center;
        color: white;
        font-size: 1.5em;
    }
}