/*General Styling*/
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #ffffff;
}

/*Scroll bar*/
/*Chrome styling*/
::-webkit-scrollbar {
    width: 12px;
    background-color: #ebebeb;
}

::-webkit-scrollbar-thumb {
    background: #b4b4b4; 
}

::-webkit-scrollbar-thumb:hover {
    background: #b4b4b4; 
}

/* HEADER */

header {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
/*    background-image: url(Images/pexels-photo-176851.jpeg);*/
    background-size: cover;
    padding: 30px;
    box-sizing: border-box;
}

h1 {
    color: white;
    font-family: 'ChaletComprime-HongKongEighty', sans-serif;
    font-size: 50px;
    font-weight: normal;
    margin: 0;
    line-height: 1;
    margin-top: 20px;
}

h2 {
    font-family: 'ChaletComprime-CologneEighty', sans-serif; 
    font-weight: lighter;
    font-size: 22px;
    background-color: #1a1918;
    color: white;
    margin: 20px;
    letter-spacing: 1px;
    padding:  5px 10px;
}
/* NAV */

nav{
    width: 100%;
    background-color: #1a1918;
    min-height: 50px;
    height: auto;
    display: flex;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
}

.navLink{
    color: #ffffff;
    position: relative;
    font-family: 'ChaletComprime-CologneEighty', sans-serif;
    font-size: 19px;
    letter-spacing: 1px;
    line-height: 20px;
    text-decoration: none;
    margin: 0 15px;
}

/*ARTICLE CONTENT*/
article{
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

h3{
    color: #116051;
    font-family: 'Bungee', sans-serif;
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    line-height: 30px;
    margin-top: 50px;
    margin-bottom: 0px;
}

article p{
   font-family: 'ChaletComprime-CologneEighty';
    font-weight: lighter;
    letter-spacing: 1px;
    font-size: 18px;
    line-height: 20px;
    max-width: 800px;
    align-self: center;
}

article b{
    font-family: 'ChaletComprime-CologneEighty', sans-serif;
    align-self: center;
    font-size: 17px;
}

.caption{
    align-content: center;
    text-align: center;
    font-size: 16px;
    max-width: 800px;
    color: #171717;
}

.image {
    margin: 20px;
    width: 300px;
    height: auto;
    background-color: white;
    align-self: center;
    box-shadow: 2px 2px 20px #d1d1d1;
    object-fit: cover;
}

.square {
    height: 200px;
    width: 200px;
}

.small {
    width: 200px;
    height: auto;
}

.medium {
    width: 350px;
}

.large {
    width: 800px;
}

.noShadow{
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.flexGallery{
    margin-top: 30px;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    align-self: center;
    background-color: #f2f2f2;
    padding: 20px;
}

.scrollable{
    padding: 0;
    height: 600px;
    width: 800px;
    overflow-y: scroll;
    overflow-x: hidden;
    border-top: 20px solid #f2f2f2;
    border-bottom: 20px solid #f2f2f2;
}

.scrollable > .large {
    width: 95%;
}

/*FOOTERS*/
footer {
    background-color: #222120;
    height: auto;
    width: 100%;
}

#infoBlock{
    display: flex;
    justify-content: center;
}

#infoBlock a{
    margin: 15px;
    color: white;
    font-family: 'ChaletComprime-CologneEighty', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 100;
}

#copyrightNotice{
    border-top: 1px solid #171717;
    padding-top: 2vw;
    padding-bottom: 2vw;
    color: #959595;
    font-family: 'ChaletComprime-CologneEighty', sans-serif;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    font-size: 12px;
}

/*============== Footer (contact) Section ============*/

footer{
    padding: 5vw 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #212121;
    color: white;
    font-family: 'ChaletComprime-CologneEighty';
    font-weight: normal;
    box-sizing: border-box;
}

.contactBox{
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 4vw;
}

.linkIcon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.contactLink{
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 20px;
    
}

.footerLow{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactLocation{
    font-family: 'TodayShop-UltraItalic';
    background-color: #239E76;
    letter-spacing: 1px;
    margin: 50px 0px 20px;
    padding: 3px 8px;
}

.contactLegal{
    width: 100%;
    text-align: center;
    background-color: #191919;
    padding: 6px;
    color: #5a5a5a;
    box-sizing: border-box;
}
  
.contactLegal p{
    font-size: 16px;
    font-weight: bold;
    font-family: 'ChaletComprime-CologneEighty';
    font-weight: lighter;
    letter-spacing: 0.8px;
}