﻿/* Copyright Katherine Townsend */

/* Brown: #332e10, rgb(51,46,16), hsl(51.4,52.2,13.1)
	Blue: #1c4682, rgb(28,70,130), hsl(215.29, 64.6, 31)
    Yellow: #f5c501, rgba(245, 197, 1, 1), hsl(48.2,99.2,48.2)
*/

body {
    background: #fff url(../img/img6.jpg) no-repeat center;
    background-attachment: fixed;
    background-size: cover;
    overflow-y: hidden;
    max-height: 100%;
    cursor:pointer;
}

header {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 1px 0px 2px rgba(0,0,0,0.2);
}


.logo {display: none;}

main {
    padding-left: 20%;
    padding-top: 10%;
}


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

    .logo {
        display: inline-block;
    }

    a:hover, a:focus {
        cursor: pointer;
        transition: opacity .3s;
        opacity: 0.7;
    }

    main {
        padding-top: 0;
        padding-left: 10em;
        margin-top: 0;
    }

}


