@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,700;1,400&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

/* BEGIN NAV */
.navigation-header {
  background-color:rgba(0,0,0,0.9);
  padding: 15px 30px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container > a {
  text-decoration: none;
  font-weight: 700;
  width: 3rem;
  padding: 0 200 0 0px;
}

.navigation-items {
  display: flex;
  gap: 50px;
  padding: 0 200 0 0px;
}

.navigation-items > a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: .4s ease-in-out;
}

.navigation-items > a:hover {
  color: #90C8D6;
}

.hamburger {
  display: none;
  font-size: 20px;
  font-weight: 800;
  color: white;
}
@media screen and (max-width:768px) {
  .hamburger {
    display: flex;
    cursor: pointer;
  }
  .hamburger #closeHam {
    display: none;
  }
  .navigation-items {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 0;
    top: 58px;
    background-color:rgba(0,0,0,0.8);
    width: 100%;
    height: calc(100vh - 58px);
    padding-top: 60px;
    gap: 10vh;
  }
}
/* END NAV */

footer {
        /*bottom: 0;
        margin:0;
        padding:0;*/
        width:100vw;
        height:60px;
        }

html {
       height: 100%;
       }
		
#content {
        flex:1 0 auto;
        flex-wrap: wrap;
	}
	
#textwrapper {
	margin: 0px auto;
	max-width: 600px;
	padding: 25px;
	text-align: left;
	}

#contactcontent {
	height:80vh;
	}

.push {
	height:-60px;
	}
	
body>footer {      
        margin-top:0;
	text-align: center;
	font-size: .7em;
	}

a.main:link {
	color: #181818; text-decoration: none;
	}
	
a.main:visited {
	color: #181818; text-decoration: none;
	}
	
a.main:hover {
	color: #95c9c7; text-decoration: underline;
	}
a.main:active {
	color: #181818; text-decoration: none;
	}

img {
	border: none;
	}
	
.work {
	border: 2px solid #2c2c2c;
        width: 100%;
        display: block;
	}

.work-tall {
	border: 2px solid #2c2c2c;
        display: block;
	}
#splashbox {
        display: flex;
        justify-content: center;
        }

.splash {
	border: none;
        display: block;
        margin: auto 0;
        padding-bottom: 100;
	}
	
p.main {
	text-align: left;
	line-height: 1.6em;
	font-size: 1em;
	}
	
h2 {
        font-family: Poppins, sans-serif;
        font-size: 1.5em;
        font-weight: 700;
        color: #95c9c7;

h3 {
        font-family: Poppins, sans-serif;
        font-size: 1.3em;
        font-weight: 500;
        color: #2c2c2c;
	
	
.tiiiny{
	font-size: .7em;
	font-family: Tahoma, Geneva, sans-serif;
	}