/********** CSS Reset **********/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
  
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
  
body {
  min-height: 100vh;
}
  
ol, ul {
  list-style: none;
}
  
blockquote, q {
  quotes: none; 
}
  
blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}
  
table {
  border-collapse: collapse;
  border-spacing: 0;
}
  
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-sizing: border-box;
}

font-family: 'Space Grotesk', sans-serif;
  
main {
  position: relative;
  min-height: 100vh;
  z-index: 2;
}
/********** Menu links **********/

.menu li a {
  margin: 0 20px;
  color: rgba(255,255,255,0.3);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255,255,255,0.6); 
  font-family: 'Space Mono', monospace;
  font-size: 68px;
  font-weight: 700;
  text-decoration: none; 
  transition: 1s ease-in-out;
}

.menu li a:hover {
  color: rgba(255,255,255,0.6);
  -webkit-text-fill-color: rgba(255,255,255,0.6);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255,255,255,0.6);
  text-shadow: 0px 0px 20px #ffffff;
  font-size: 72px;
  transition: .3s ease-in-out;
}

.topL a {
  top: 0;
  left: 0;
}

.topR a {
  position: absolute;
  top: 0;
  right: 0;
}

.bottomL a {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bottomR a {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 900px) {
  .topR a, .bottomL a, .bottomR a {
    position: initial;
  }
}

/* The Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: 0;
  padding: 20px 20px 40px 20px;
  border: 1px solid #888;
  width: 60%;
  float: right;
}

.modal-content img {
  margin-top: 8px;
}

.modal-content .title {
  font-size: 1.2rem;
  padding-top: 30px;
}

.modal-content p {
  padding: 5px 0;
  font-size: 1rem;
  font-family: 'Space Grotesk';
}

.modal-link {
  display: inline-block;
  color: rgba(0, 230, 0, 1);
}

.modal-link:hover {
  transform: scale(1.04)
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
.modal-content {
  float: none;
  border-radius: 10px;
  margin: 20px auto;
  width: 90%;
}

.modal-content img {
  width: 80% !important;
}
}


/********** Social Links **********/
.socials {
  position: absolute;
  left: 0; 
  right: 0; 
  bottom: 15%;
  margin-left: auto; 
  margin-right: auto; 
  width: 170px;
  
}

.socials li {
  display: inline-block;
}

.socials .social-icon {
  color: rgba(255,255,255,0.6);
  font-size: 25px;
  padding: 8px;
  transition: .3s ease-in-out;
}

.socials .social-icon:hover {
  color: rgba(255,255,255,1);
  transition: .3s ease-in-out;
}

@media screen and (max-width: 900px) {
  .socials {
    bottom: 2%;
  }
}