﻿
/*
h1 brown #6c3416 rgba(108,52,22,1)
light background rgba(234, 231,229,1), #eae7e5
#2b221d charcoal black rgba(43,34,29,1)
rgba(82,80,82,1) #525052  cement gray
*/

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

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

.container {
    /*background: url(img/brown_block.png) repeat;*/
    background: url(../img/mansion.jpg) top no-repeat;
    background-size: cover;
    color: #362d28;
    font-family: 'Times New Roman', Times, serif;
    height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    border-bottom: solid 3px #2b221d;
    background: rgba(234, 231,229,.85);
}

h1, h2, h3 {
    font-family: Andada, "Copperplate Gothic", serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.19);
}

h1 {
    text-align: center;
    /*background-color: rgb(84, 84, 84);
            text-shadow: rgb(0, 0, 0) 2px 2px 2px;*/
    /*font-family: 'Copperplate Gothic', sans-serif;*/
    color: #6c3416 /*#7a3e1e*/;
    padding: 1rem .25rem .75rem .25rem;
    letter-spacing: 2px;
    font-size: 2.5rem;
}

.subheads {
    display: flex;
    flex-flow: column nowrap;
    flex-direction: column-reverse;
}

h2 {
    font-size: 1.1rem;
    text-align: center;
    padding: .5rem;
}


.serving {
    font-style: italic;
    text-align: center;
    padding: .5rem;
}

/******************* BUTTONS *******************/

/* General Buttons */
.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 1rem .25rem 1.5rem .25rem;
    align-items: center;
}

.button {
    width: 100px;
    height: 40px;
    background: url(../img/stone_sm.png) repeat;
    border: none;
    border-radius: 1px;
    background-repeat: round;
    text-align: center;
    box-shadow: 2px 2px 1px 1px rgba(0,0,0,.2), 1px 1px 1px 1px rgba(0,0,0,.1) inset, 1px 0px 1px 0px rgba(0,0,0,.3);
    cursor: pointer;
    font-family: Andada, serif;
    font-size: 1.1rem;
    color: #2b221d;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .button:hover, .button:active {
        border: solid 2px rgba(0,0,0,.6);
        border-radius: 2px;
        box-shadow: 1px 1px 1px 1px rgba(0,0,0,.2), 1px 1px 1px 1px rgba(0,0,0,.1) inset, 1px 0px 1px 0px rgba(0,0,0,.3);
        opacity: .9;
    }


@media only screen and (min-width: 900px) {

    .buttons {
        display: flex;
        width: 25%;
        justify-content: space-around;
        padding-top: 1rem
    }

    h1 {
        font-size: 3rem;
        padding: 1rem;
        padding-top: 1rem;
    }

    header {
        border-bottom: none;
        background: linear-gradient(rgba(234, 231,229,1), rgba(234, 231,229,.85), rgba(234, 231,229,.85), rgba(234, 231,229,.85), rgba(234, 231,229,.05));
    }

    .subheads {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem 2rem 2rem;
    }

    .buttons, 
    .serving {
        margin-top: -3rem;
    }

    .serving {
        font-size: 1.1rem;
        font-weight: 500;
        padding-bottom: 1rem;
    }

}




