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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* reset ends */

html {
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    background-color: #111111;
  }
  
  body {
    font-size: 17px;
    background-color: #111111;
    /* color: #383838; */
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
  }
  
  .page-body {
    line-height: 1.75;
    width: 80%;
    max-width: 709px;
    margin: 0 auto;
    /* font-family: 'Lora', serif; */
    margin-top: 32px;
  }

.topnav{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background-color: #111111;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 52px auto;
        grid-template-columns: 52px auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
}

.logo{
    height: 32px;
    opacity:0.83;
}
.logo:hover{
    opacity:1;
}
.hero {
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    justify-items: center;
    /* background-color: #FFFDE4; */
    width: 100%;
    padding-top: 52px;
    padding-bottom: 52px;
  }

.hero-image {
    width: 70%;
    margin: 0 auto;
  }
  
  .hero-text-wrapper {
    word-wrap: normal;
    max-width: 80%;
    margin-top: 1.5rem;
    text-align: center;
  }
  
  .hero-text {
    color: hsla(0, 0%, 100%, 0.43);;
    font-weight: 300;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
  }

  
  
  .hero-subtext {
    
    margin-top: 0.25rem;
    color: hsla(0, 0%, 100%, 0.3);
    font-weight: 400;
    font-size: 2rem;
    line-height: 1;
  }

  @media (max-width: 500px) { 
    .hero-text {
        font-size: 2rem;
    }
    .hero-subtext{
        font-size: 1.33rem
    }
   }

  .placeholder-text{
      display: block;
      text-align: center;
    color: hsla(0, 0%, 100%, 0.3);
    max-width: 709px;
  }

  .social-connections-container{
      margin: 0 auto;
      display: flex;   
      flex-direction: column;         
      padding: 20px 10px;

  }

  .social-connections-wrapper{
      margin: 22px auto;
      display: flex;
      /* opacity: 0.6; */
      justify-content: center;
      align-items: center;
      height: 32px;
  }

  .social-connection{
      /* display: block; */
      height: 100%;
      margin: 0 12px; 
      display: flex;
      justify-content: center;     
      align-items: center;     
  }

  
  .social-connection img{
    opacity:0.5;   

}

.reddit{
     
    height: 32px;
}
.discord{
    height: 26px;
}
  .social-connection img:hover{
    opacity:0.8;
  }