/* Styles.css */
*{
    padding: 0;
    margin: 0;
    border: 0;
}
@font-face {
  font-family: 'Fredericka the Great';
  src: url('/FrederickatheGreat-Regular.ttf')  format('truetype');
}
/* -----------------------------------------------*/
a:link {
  color: #808000;
}

/* visited link */
a:visited {
  color: #808000;
}

/* mouse over link */
a:hover {
  color: gray;
}

/* selected link */
a:active {
  color: yellow;
}
/* -----------------------------------------------*/
.logo {
    width: 100vw;
    position: fixed;
    z-index: 1000;
    left: 10vw;
    top: 1vh;
    size: 5vh;
}

.div-setup {
  	color: #808000;
	background-color: #FFFFE0;
	width: 90vw;
/*	min-height: 10vh; */
    position: relative;
	top:1vh;
	bottom: 10vh;
	left: 0vh;
	right: 0vh;
    border-radius: 50px;
	margin: auto;
    border:1px solid #1c2f16;
}

/* ============================================== */
.text-centerd {
    position: relative;
    text-align: left;
}

.text-big-top {
    font-family: 'Fredericka the Great', cursive;
    color: #808000;
    text-shadow: 5px 5px 16px white;
/*    -webkit-text-stroke: 1px white; */
    font-weight: 800;
    font-size: 800%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10%;
    text-align: left;
}

.text-big {
    font-family: 'Fredericka the Great', cursive;
    color: #808000;
    text-shadow: 1px 1px 1px black;
    font-weight: 500;
    font-family: 'Fredericka the Great';

    padding-left: 10%;
    padding-right: 10%;
    padding-top: 2%
}
.text-default {
    text-align: left;
    color: #808000;
    font-weight: 600;
    font-size: 100%;
    text-shadow: 2px 2px 16px grey;
    padding-left: 10%;
    padding-right: 10%;
}
.text-default-rev {
    text-align: left;
    color: #1c2f16;
    font-weight: 600;
    font-size: 100%;
    text-shadow: 2px 2px 4px black;
    padding-left: 10%;
    padding-right: 10%;
}
.text-default-white {
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 100%;
    text-shadow: 2px 2px 4px black;
    padding-left: 10%;
    padding-right: 10%;
}

/* ============================================= */
.parallax-home-1 { 
    /* The image used */
    background-image: linear-gradient(rgba(255, 255, 255, .0), rgba(255, 255, 255, .0)), url("/images/bg1.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    width: 100vw;
  }

.parallax-home-2 { 
    background-color: #808000;
    width: 100vw;
    overflow: auto;
}
/*************************************************************************/

.parallax-footer { 
    background-image: linear-gradient(rgba(208, 235, 255, 0.0), rgba(208, 235, 255, 0.0)), url("/images/bg1.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 20vh;
  	color: #b4aa92;
    background-color: #808000;
  }

.parallax-bottom { 
/*    background-image: linear-gradient(rgba(208, 235, 255, 0.0), rgba(208, 235, 255, 0.0)), url("/images/bg1.jpg"); */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
/*    height: 20vh; */
  	color: #b4aa92;
    background-color: #808000;
  }

/* ---------------------- Menu -----------------------------*/
.menu {
  z-index: 100;
  position: fixed;
  right: 0%;
  top: 0%;
  width: auto;
  font-family: 'Fredericka the Great', cursive;
  }

.top-bar
{
    z-index: 99;
    position: fixed;
    top: 0%;
    display: inline-block;
    width: 100vw;
    height: 60px;
    padding: 5px;
	background-color: #808000;
    margin-top: 0px;
    margin-left: -8px;
}

/* Add a background color to the top navigation */
.topnav {
	background-color: #808000;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #FFFFE0;
    text-shadow: 2px 2px 8px gray;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 150%;
    border-bottom: 3px solid transparent;
}

.topnav a:hover {
    border-bottom: 3px solid  #808000;
}

.topnav a.active {
    border-bottom: 3px solid #808000;
}

