/* Styles.css */
*{
    padding: 0;
    margin: 0;
    border: 0;
}

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

.logo-setup {
    position: fixed;
    text-align: left;
    z-index: 200;
    left: 1%;
    top: 1%;
    bottom: 1%;
    size: 7%;
}

.div-name-logo {
  	color: gray;
    background-color: #F1F3F3;
	width: 15vw;
    left: 0%;
	top: 2%;
    text-align: center;
    position: relative;
}
/* ============================================== */
.text-centerd {
    position: relative;
    text-align: left;
}

.text-big-top {
    color: black;
    font-weight: 500;
    font-size: 400%;
    text-shadow: 5px 5px 5px white;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10%;
}

.text-big {
    color: gray;
    text-shadow: 1px 1px 1px gray;
    font-weight: 400;
    font-size: 50%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 2%
}
.text-bar {
    color: gray;
    text-shadow: 1px 1px 1px gray;
    font-weight: 400;
    font-size: 250%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 0%
}
.text-fat {
    color: gray;
    text-shadow: 1px 1px 1px gray;
    font-weight: 400;
    font-size: 110%;
}

.text-default {
    text-align: left;
    color: gray;
    font-weight: 400;
    font-size: 100%;
    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/bg.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100vw;
  }

.parallax-home-2 { 
    background-color: #F1F3F3;
    width: 100vw;
    overflow: auto;
    border-bottom: 1px solid gray;
    border-top: 1px solid lightgray;
}
/*************************************************************************/

.parallax-footer { 
    background-image: linear-gradient(rgba(208, 235, 255, 0.0), rgba(208, 235, 255, 0.0)), url("/images/bg.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 30vh;
  	color: #b4aa92;
  }
.parallax-bottom { 
    background-color: #F1F3F3;
    width: 100vw;
    height: 20vh;
    overflow: auto;
    border-bottom: 1px solid gray;
    border-top: 1px solid gray;
}
/* ---------------------- Menu -----------------------------*/
.menu {
  z-index: 100;
  position: fixed;
  right: 0%;
  top: 0%;
  width: auto;
  }

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

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

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: gray;
    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  #b4aa92;
}

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

