/* STYLE SHEET main */
* {
    padding:0;
    margin:0;
    box-sizing: border-box;
    border-collapse: collapse;  /* for tables */
}



body#decoration {
    background-image: linear-gradient(#364958, #C9E4CA);
    background-repeat: no-repeat;
    height: auto;
    background-color: #364958;
}











div.section {
/* empty boarder */
    max-width: 100%;
    /* background: orange; */

    clear: both;
}


div.wrapper {
    /* height: 1000px; */
    /* background: blueviolet; */
    max-width: 1100px;
    margin: 0px auto 0px auto;
        /* OUTSIDE  top, right, bottom, left */
    /* display: block; */
    padding: 0px 2% 0px 2%;
        /* INSIDE  top, right, bottom, left */
}




div.box {
       /* height: 100px; */
       /* background: beige; */
    clear: both;
    overflow: hidden;
    padding: 1%;
    border: 2px solid #3B6064;
    background-color: rgb(230, 230, 230);
    border-radius: 10px;
    margin-bottom: 4%;

    padding: 3% 2% 3% 2%;
        /* INSIDE  top, right, bottom, left */
}










footer {
    height: 50px;
    line-height: 50px;
    /* background-color: #C9E4CA; */
    /* background-color: bisque; */
    /* opacity: 20%; */

    /* overflow: hidden; */
    /* position: absolute; */

    /* z-index: 5; */
    border-top: 1px solid rgb(230, 230, 230);
}



footer ul {
    float: right;
}
footer li {
    font-family: 'Noto Sans', sans-serif;
    float: left;
    list-style-type: none;  /* remove bullets */
/*    to give it more space between the items*/
    margin-right: 20px;
}
footer a {
    color: black;
}





/* TEXT */
h1 {
    color: white;
    font-family: 'Noto Sans', sans-serif;
    font-size: 45px;

    padding-top: 7%;
    text-align: center;
}



h2.middle {
/* USED: pastry */
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    
    margin-bottom: 1%;
}



p.middle {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    text-align: center;
}
br.responsive {
    display: inline;
}
@media (min-width: 615px) {
    br.responsive {
        display: none;
    }
}



a.button,
a.button-hover {
    /* resize view */
        font-family: 'Noto Sans', sans-serif;
        padding: 1% 1% 1% 1%;
                /* INSIDE  top, right, bottom, left */
        width: 300px;
        margin-bottom: 3%;
    
        text-decoration: none;
        background-color: #364958;
        border-radius: 5px;
        color: white;
    
        /* keeps display paddings */
        display: inline-block;

        /* NOTE:  to make overlay work */
        position: relative;
    }
        a.button:hover,
        a.button-hover:hover {
            background-color: #87BBA2;
            color: black;
            box-shadow: 0 0 10px #888888;
            font-weight: bold;
        }

a.button-hover:hover:after {
    /* adds text after initial html text */
    content: " Coming Soon";
}
    p.middle a.button-hover:hover {
    /* makes curser disappear when hovering over button */
        cursor: none;
    }