    /* Stylesheet for main website */
    @import url('https://fonts.googleapis.com/css2?family=Caudex&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Tagesschrift&display=swap');
   
    @font-face {
	font-family: 'Morris Roman Black';
	src: url('fonts/morris-roman-black/MorrisRoman-Black.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
    }

    body, html {
	margin: 0;
	padding: 0;
	height: 100%; 
	font-family: 'Caudex', serif; /* Fallback font */
	/* background: url('images/Scroll.png') center center no-repeat; /* #FBF2DD; */
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));  
	background-size: cover;  
	overflow: hidden;
    }

    header {
        display: flex;
        justify-content: center;
        align-items: center;
	background: #000;
	opacity: 60%;
	height: 60px;
        position: absolute;
        padding: 5px;
	}

    .logo-container {
	    position: relative;
    }

    .logo {
    	    display: flex;
	    justify-content: left;
    }

    .logo-sun {
	    position: absolute;
	    z-index: 1;

	    /* Giant center screen sun
	    margin-top: 12%;
            left: 44%;
            width: 12%; */ 
	    
            /* Small upper center screen sun */
    	    margin-top: 4.0%; 
	    left: 46%; 
	    width: 7%;
	    height: auto;
            transition: transform 4.0s ease, filter 0.5s ease, text-shadow 0.5s ease;
    }

    .logo-letter {
	    position: absolute;
	    z-index: 2;
	    /* Giant center screen letter
	    margin-top: 16%;
            left: 47.2%;
            width: 5.5%; */
	    /* Small upper center screen letter */
	    margin-top: 6.1%; 
	    left: 47.75%;
	    width: 3.5%;
	    height: auto; 
	    transition: transform 2.0s ease, filter 0.5s ease;
    }

    .logo-sun:hover {
            filter: brightness(107%) contrast(101%) hue-rotate(-1deg);
            transform: scale(1.005);
            transform: rotate(360deg);
            text-shadow: 0 0 2px rgba(255, 245, 157, 0.8);
    }

    .logo-letter:hover {
	    filter: brightness(107%) contrast(101%) hue-rotate(-1deg);
            transform: scale(1.005);
            text-shadow: 0 0 2px rgba(255, 245, 157, 0.8);
    }
    
    .nav-container {
           position: relative;
           height: 60px;
           /* background-image: url('images/summering.png') no-repeat center center; /* Menu scroll image */
	   /* background-size: contain; */
	   background-color: rgba(1, 1, 0, 0.25);
	   /* max-width: 700px; */
	   /* margin: 0 auto; */
     }

    .separator {
	    display: inline-block;
	    margin: auto;
            color: #C67F1F;
            margin: 0 5px;
    }

    nav {
        display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 20%;
	padding: 10px 10px;
	font-size: 24px; 
	left: 50%;
	transform: translateX(-50%);
    }

    nav a {
	display: flex;
	padding: 0 10px;
	color: #C78020;
	text-shadow: 1px 0px 0px #C78010;
	font-size: 32px;
	font-family: 'Morris Roman Black';
	font-weight: normal;
	text-decoration: none;
	transition: all 1.0s ease;
	margin: 0 auto;
    }
	
    nav a:hover {
	text-decoration: none;
	filter: brightness(120%) contrast(105%) hue-rotate(2deg);
	text-shadow: 0 0 3px 1px #FFF;
    }

    .content-section {
        display: none;
	position: relative;
	bottom: 0%;
	width: 42%;
	height: auto;
	left: 50%;
	padding: 18px; 
	margin-top: 8%;
	overflow: hidden;
    }

    #about {
	    animation: slideUp 2.5s forwards;
    }

    #map {
	position: relative;
	width: 2250px;
	top: 35%;
	left: 50%;
	transform: translate(-50%, -50%);
    }

.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #C78020;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-family: 'Morris Roman Black';
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

    p {
	font-size: 18px;
    }

    footer {
	z-index: 10;
        font-size: 24px;
        color: #EBA844;
        font-weight: bold;
        text-align: center;
        position: absolute;
        bottom: 1%;
        width: 100%;
        padding: 10px 0;
    }

/* Mobile menu, only displays on mobile */
    .mobile-logo-container {
	    display: none;
	    width: 100%;
	    height: 100%;
            position: relative;
    }

    .mobile-logo-sun {
            position: absolute;
            z-index: 10;
            margin-top: 0.8%;
            margin-left: 7.75%;
            width: 12.5%;
            height: auto;
            transition: transform 4.0s ease, filter 0.5s ease, text-shadow 0.5s ease;
    }

    .mobile-logo-letter {
            position: absolute;
            z-index: 11;
            margin-top: 4.25%;
            margin-left: 10.25%;
            width: 7%;
            height: auto;
            transition: transform 2.0s ease, filter 0.5s ease;
    }

    .mobile-logo-sun:hover {
            filter: brightness(107%) contrast(101%) hue-rotate(-1deg);
            transform: scale(1.005);
            transform: rotate(360deg);
            text-shadow: 0 0 2px rgba(255, 245, 157, 0.8);
    }

    .mobile-logo-letter:hover {
            filter: brightness(107%) contrast(101%) hue-rotate(-1deg);
            transform: scale(1.005);
            text-shadow: 0 0 2px rgba(255, 245, 157, 0.8);
    }

.mobile-container {
    display: none;
    position: relative;
    height: 8%;
    background-color: rgba(1, 1, 0, 0.75);
}

.collapsible-menu {
	display: none;
}

.collapsible-icon {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: auto;
    justify-content: space-between;

}

.collapsible-icon .line {
    width: 28px;
    height: 3px;
    background: #243D5C;
    margin: 3px 0;
}

.mobile-menu {
    display: none;
    position: absolute;
    right: 0;
    width: 100%;
    height: auto;
    background-color: rgba(1.1, 1.1, 0, 0.75);
    z-index: 100;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    padding: 10px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #C78020;
    font-size: 20px;
    display: block;
    text-align: left;
    padding-left: 5%;
    transition: filter 1.0s ease; 

}

.mobile-menu ul li a:hover {
    filter: brightness(150%) contrast(150%) hue-rotate(5deg);
}

    /* Handling y-axis transform for each section */
    @keyframes slideUp {
	    from {
		    transform: translate(-50%, 100%);
	    }

	    to {
		    transform: translate(-50%, 15%);
	    }
    }
	
    /* Mobile site properties */
    @media only screen and (max-width: 600px) {

	    .collapsible-menu {
		    display: block;
	    }

	    .mobile-logo-container {
		    display: flex;
	    }

	    .logo-container {
		    display: none;
	    }

    	    .logo-sun {
		    display: none;
	    }

	    .logo-letter {
		    display: none;
	    }

	    nav {
		    display: none;
		    flex-direction: column;
		    justify-content: center;
		    align-items: center;
	    }

	    .nav-container {
		    display: none;
	    }

	    .mobile-container {
		    display: flex;
	    }

	    .content-section {
		    width: 80%;
	    }

	    footer {
		    display: none;
	    }

    }
