/******************************************
/* CSS
/*******************************************/
:root {
  --background: rgb(26, 26, 26);
  --accent-1: rgb(185, 185, 187);
  --accent-2:  rgb(255, 255, 255);
  --link: rgb(185, 185, 187);
  --link-hover: rgb(255, 255, 255);
  --link-active: rgba(147, 111, 53, 1);
}

/* Box Model Hack */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  font-family: 'Roboto', sans-serif;
  background: black;
}

/******************************************
/* LAYOUT
/*******************************************/

li {
  list-style: none;
}

a:link, a:-webkit-any-link { 
  text-decoration: none;
  color: var(--link);
  transition: all 1s ease 0s;
}

a:visited { 
  text-decoration: none; 

}

a:hover { 
  text-decoration: none; 
  color: var(--link-hover);
  transition: all 0.4s ease 0s;
}

a:active { 
  text-decoration: none; 
}

li, a {
  font-weight: 400;
}

/* ************************************************************ */

header {
  display: flex;
  justify-content: space-between;
  background: var(--background);
  align-items: center;
  padding: .5% 1%;
  border-bottom: 1px solid black;
}

.logo {
  cursor: pointer;
}

.nav_links li {
  display: inline-block;
  font-size: 1.3rem;
  padding: 0 10px;
}

.hero {
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.headline {
  font-size: 4rem;
  color: white;
  font-weight: 500;
  -webkit-text-stroke-color: black;
  -webkit-text-stroke-width: 1px;
  line-height: .4;
  /* -webkit-text-stroke: 2px black; */
}

.text-wrapper {
  text-align: center;
}

.parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.tiles {
  height: 30vh;
  background: black;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.tiles div {
  background-color: var(--accent-1);
  margin: 1% 1%;
  padding: 10px;
  border-radius: 10px;
}

.tiles h2 {
  margin-bottom: 10%;
  padding: 0 0 0 20px;
  color: var(--accent-2);
  background-color: black;
  border-radius: 10px;
}

.overflow {
  height: 200vh;
}