html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote,
a, address, em, img, small, strike, strong, sub, sup,
b, u, i, center, ol, ul, li, footer, header,
menu, nav, section, time, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
footer, header, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}

@font-face 
{
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Light.eot'), 
         url('../fonts/Metropolis-Light.woff2') format('woff2'), 
         url('../fonts/Metropolis-Light.woff') format('woff'), 
         url('../fonts/Metropolis-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face 
{
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-LightItalic.eot'), 
         url('../fonts/Metropolis-LightItalic.woff2') format('woff2'), 
         url('../fonts/Metropolis-LightItalic.woff') format('woff'), 
         url('../fonts/Metropolis-LightItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}
@font-face 
{
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.eot'), 
         url('../fonts/Metropolis-Regular.woff2') format('woff2'), 
         url('../fonts/Metropolis-Regular.woff') format('woff'), 
         url('../fonts/Metropolis-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face 
{
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-RegularItalic.eot'), 
         url('../fonts/Metropolis-RegularItalic.woff2') format('woff2'), 
         url('../fonts/Metropolis-RegularItalic.woff') format('woff'), 
         url('../fonts/Metropolis-RegularItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

body {
  margin: 0;
  
  /*overscroll-behavior: none;
  overflow-anchor: auto;

  scroll-snap-type: x proximity;
  scroll-snap-destination: 0% 75%;
  scroll-snap-points-x: repeat(75%);
*/
  scroll-snap-type: x mandatory;



  background-color: black;
  color: white;
  font-family: 'Metropolis', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1.9em;
  cursor: crosshair;
  transition-duration: 0.15s;
}

.uppercase {
  text-transform: uppercase;
}

a .underline-title {
  border-bottom: solid grey 0.1em;
}

a {
  text-decoration: none;
  color: inherit;
  transition-duration: 0.1s;
}

a:hover {
  color: grey;
}

a:hover .underline-title {
  border-bottom-color: white;
}
a img {
  transition-duration: 0.1s;
}
a:hover img {
  filter: grayscale(100%);
}

main#wrapper.homepage {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto 85vh auto;
  grid-gap: 10px;
  grid-column-gap: 1em;
  width: 170%;
  box-sizing: content-box;
  padding: 0 7.5%;
}

main section {
  background-color: rgba(255, 255, 255, 0.00);
  
  scroll-snap-align: start
}

#title-screen {
  grid-area: 2 / 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
#info {
  grid-area: 1 / 2;
  padding-top: 3.5em;
  margin-top: auto;
}
#about {
  grid-area: 3 / 2;
  padding-bottom: 3.5em;
  margin-bottom: auto;
}
#people {
  grid-area: 1 / 1 / span 3 / 1;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  margin-top: auto;
  margin-bottom: auto;
}

#circle-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: -1000;
  pointer-events: none;
}
.circle {
  width: 28vw;
  height: 28vw;
  min-width: 210px;
  min-height: 210px;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  border: solid grey 0.33em;
}

.inline-image-block img {
  margin-bottom: 0;
  max-height: 1.5em;
  max-width: 1.5em;
  vertical-align: middle;
  margin: -1em 0.1em -0.6em 0;
}

.greyscale img {
  filter: grayscale(100%);
}

h1 {
  font-size: 13vw;
}

p, h2, #list-of-works::after {
  font-size: 1.25em;
}

#list-of-works::after {
  content: "List of works";
  text-transform: uppercase;
}


#edges div {
  position: fixed;
  text-transform: uppercase;
}
#edges div#top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#edges div#bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#edges div#left {
  left: 0;
  top: 50%;
  transform: translateX(-30%) rotate(-90deg);
}
#edges div#right {
  right: 0;
  top: 50%;
  transform: translateX(30%) rotate(90deg);
}
#edges {
  display: none;
}

@media only screen and (min-width: 850px) {
  body {
    font-size: 1.8vw;
  }
  main#wrapper.homepage {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto 85vh auto;
    width: 152%;
    box-sizing: content-box;
    padding: 0 12%;
  }
  h1 {
    font-size: 5.25em;
  }
  #edges {
    display: block;
  }


}