@charset "utf-8";
/* CSS Document */

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

header {
    background-color: #e0deda;
}

body {
    background-image:url("../images/homebkgd.jpg");
    background-size: cover;
    background-repeat:no-repeat;
    background-position-y: 80px;
    background-color: #e0deda;
}

h1 {
    text-align: center;
}

nav {
    text-align: center;
    text-wrap: nowrap;
}

nav ul li {
    font-size: 24px;
    text-align: center;
	display: inline-block;
    text-wrap: nowrap;
	padding-left: 30px;
    padding-right: 30px;
    vertical-align: baseline;
    margin-top: 20px;
    margin-bottom: 8px;
}

nav img {
    align-content: center;
    padding-top: 5px;
    padding-bottom: 20px;
    margin-right: 22px;
}

h2 {
    text-align: center;
    color: #e0deda;
    font-size: 60px;
    padding-top: 70px;
    padding-bottom: 60px;
}

button {
	background-color: #e0deda;
    border-radius: 50px;
    border-width: 10px;
    border-color: #e0deda;
    border-style: solid;
    width: 230px;
	cursor: pointer;
}

button.extras {
    position: absolute;
    top: 110px;
    left: 15px;
    padding: 5px;
    background-color: #7b7165;
    border-color: rgb(49, 46, 42);
    cursor: pointer;
    width: 130px;
    border-radius: 20px;
    border-width: 5px;
}

button.extras a:link, button.extras a:visited, button.extras a:active {
    font-size: 12px;
    color: rgb(28, 27, 25);
    font-weight: bolder;
}

button.extras a:hover {
    color: #e0deda;
    
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer {
    padding-top: 180px;
    text-align: center;
    color: #e0deda;
    font-size: 13px;
}



/* ------------------------------------------LINK APPEARANCES-------------------------------------------- */
    /* ----- general links */
        a:link, a:visited, a:active {
            text-transform: uppercase;
            text-decoration: none;
            font-size: 15px;
            color: #5B5247;
        }

        a:hover {
            color: #ab9b89;
        }

    /* ----- h1 sainted soles title link */
        h1 a:link, h1 a:visited, h1 a:active {
            font-size: 40px;
            text-transform: none;
            color: #5B5247;
            font-weight: bold;
            text-decoration: none;
        }

        h1 a:hover {
            color: #ab9b89;
        } 

    /* ----- button link */
        button a:link, button a:visited, button a:active {
            text-align: center;
            font-size: 13px;
            color: #5B5247;
            font-weight: bold;
        }

        button a:hover {
            color: #ada9a3;
            
        }

/* ------------------------------------------- FONTS -------------------------------------------------- */

header, h1, h2, nav, a:link, a:visited, a:hover, a:active {
    font-family: 'Baskervville';
}