* {
	margin: 0;
	padding: 0;
	overflow: visible;
	font-family: sans-serif;
	border: 0;
}

html {
	font-size: 1vw;
}

body{
	background-color: #05053b;
	overflow-x: hidden;
}

#navbar{
	height: 10vh;
	width: 100vw;
	overflow: hidden;
	display: flex;
    flex-grow: 1;
	justify-content: center;
	align-items: center;
	background-color: #05053b;
	top: 0;
	position: fixed;
	padding: 1vh 0;
    transition: 0.4s;
	z-index: 99;
	/*font-size: 1.7vw;*/
	font-size: 2vw;
	border-bottom: 3px solid rgb(251, 225, 102);
}

#logoContainer{
	height: 10vh;
	width: 20vw;
	flex-grow: 1;
	transition: 0.4s;
	position: fixed;
	overflow: hidden;
	z-index: 100;
}

#headerLogo{
	height: 100%;
	width: 100%;
	object-fit: contain;
}

#navButtonsContainer{
	width: 100%;
	height: 60%;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
}

.navButtonsSideContainer{
	display: inline-flex;
	justify-content: space-between;
	/*width: 35vw;*/
	width: 38vw;
}

#navButtonsLeft{
	margin-left: 3vw;
}

#navButtonsRight{
	margin-right: 3vw;
}

.navbarButton{
	text-decoration: none;
	color: white;
	font-weight: bold;
}

.navbarButton:hover{
	text-decoration: underline;
	color: lightgrey;
	font-weight: bold;
}

/*
================
  MAIN CONTENT
================
*/
hr{
    background-color: rgb(251, 225, 102);
    margin: 40px auto 0 auto;
    width: 50%;
    height: 3px;
}

#mainContainer{
    position: absolute;
    width: 100vw;
    height: auto;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 12vh;
    overflow: visible;
}

.newsletterOrnamentContainer{
    height: auto;
    width: 15vw;
    overflow: hidden;
    position: absolute;
    top: 0;
}

#newsletterOrnamentContainerRight{
    right: 0;
}

#newsletterOrnamentContainerLeft{
    left: 0;
}

.newsletterOrnament{
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}

#mainContentContainer{
    position: relative;
    top: 3vh;
    width: 70vw;
    height: auto;
    margin: 0 auto;
    left: 0;
    right: 0;
}

#title{
    color: white;
    margin-top: 20px;
    font-size: 50px;
}

#socialMediaContainer{
    width: 70%;
    height: 150px;
    display: block;
    margin: 40px auto 0 auto;
    text-align: justify;
    overflow: visible;
}

.sectionTitle{
    font-size: 35px;
    text-align: left;
    margin-bottom: 12px;
    border-left: 3px solid rgb(251, 225, 102);
    padding-left: 10px;
    color: white;
}

.sectionText{
    color: white;
    font-size: 25px;
    line-height: 1.35;
}

#socialMediaText{
    width: 80%;
    float: left;
    top: 0;
    height: 70px;
}

#instagramIconContainer{
    width: 70px;
    height: 70px;
    float: right;
    /*margin-left: 70px;*/
}

#instagramIconContainer:hover {
    cursor: pointer;
}

#instagramIcon{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

#newslettersContainer{
    width: 70%;
    height: auto;
    margin: 65px auto;
    display: block;
}

#newslettersText{
    text-align: justify;
}

#newslettersList{
    margin-top: 20px;
    list-style-type: none;
}

#latestNewsletter{
    font-size: 30px;
    margin-bottom: 30px;
}

.newsletterListItem{
    width: 100%;
    font-size: 25px;
    margin-top: 15px;
}

.newsletterLink{
    text-decoration: none;
    color: rgb(251, 225, 102);
    font-weight: bold;
}

.newsletterListDivide{
    color: rgb(251, 225, 102);
    font-weight: bold;
    font-size: 15px;
    margin-top: 15px;
}

/*
==================
  MOBILE STYLING
==================
*/

@media all and (max-width: 700px){
    hr{
        margin-top: 5px;
        height: 2px;
    }
    
    #navbar{
    	font-size: 2.1vw;
    }
    
    .navButtonsSideContainer{
    	width: 37vw;
    }
    
    #navButtonsLeft{
    	margin-left: 2vw;
    }
    
    #navButtonsRight{
    	margin-right: 2vw;
    }
    
    .newsletterOrnamentContainer{
        display: none;
    }
    
    #mainContentContainer{
        width: 100%;
        margin-bottom: 180px;
    }
    
    #title{
        width: 100%;
        font-size: 30px;
    }
    
    #socialMediaContainer{
        width: 90%;
    }
    
    #socialMediaText{
        width: 70%;
    }
    
    #instagramIconContainer{
        height: 50px;
        width: 50px;
        margin-right: 10px;
    }
    
    #newslettersContainer{
        width: 90%;
        margin-top: 50px;
    }
    
    .sectionText{
        font-size: 16px;
    }
    
    .sectionTitle{
        font-size: 25px;
        border-left: 2px solid rgb(251, 225, 102);
    }
    
    #latestNewsletter{
        font-size: 23px;
        margin-bottom: 20px;
    }
    
    .newsletterListItem{
        font-size: 18px;
        margin-top: 10px;
    }
}
















