* {
    box-sizing: border-box;
  }

body {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    color: #000;
	font-family: Verdana, Arial, sans-serif;
    font-size: 1.125em;
    background: #f99903;
}

nav {
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
    text-align: end;
    padding: 0.7em;
    z-index: 2;
    background: #f99903;
    font-size: 0.7em;
    border-bottom: solid 1px #fff;
    border-left: solid 1px #fff;
    border-bottom-left-radius: 12px;
}

nav a {
    color: #fff;
    text-decoration-line: none;
}

nav a:hover {
    background-color: #fff;
    color: #f99903;
    text-decoration-line: none;
}


#banner {
    background-attachment: scroll;
    background-color: #f99903;
    background-image: url("../images/banner.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
    padding: 3em 3em 3em 3em;
    text-align: center;
    font-size: 1em;
    /*font-size: 1.375em;*/
    text-shadow: 1px 1px #000;
    min-height: 75vw;
}

.main {
    margin: 0 auto;
}

.frame {
    background: #fff;
    margin: 0 0 1em 0;
    padding: 1em;
    text-align: center;
}

header.contactData h1 {
    margin: 0;
    display: inline-block;
    border-bottom: solid 2px #f99903;
    padding: 1em 0;
}

header.contactData p {
    padding: 0.5em 0 0 0;
}

header.contactData p a {
    color: #000;
    text-decoration-line: none;
}

header.contactData p a:hover {
    color: #f99903;
    text-decoration-line: underline;
}


/* Small devices (portrait tablets and large phones, 600px and up) */
/*@media only screen and (min-width: 600px) {

}*/

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #banner {
        background-attachment: fixed;
        background-position: top center;
        padding: 5em 0 5em 0em;
        font-size: 1.375em;
    }

    .main {
        /*margin: -3em auto auto auto;*/
        margin-top: -30vh;
        max-width: calc(100% - 10em);
        width: 20em;
    }

    .frame {
        border-radius: 30px;
    }
            
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #banner {
        padding: 8em 0 8em 0em;
    }


}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .main {
        margin-top: -50vh;
        /*margin: -20em auto auto auto;*/
    }

}

@media only screen and (orientation: portrait) {
    nav{
        display: none;
    }
}