/*simple reset*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 1.44rem;
    line-height: 1.44;
    height: 100%;
}
h1 {
    font-size: 4.209rem;
}
h2 {
    font-size: 3.157rem;
}
h3 {
    font-size: 1.777rem;
}
h4 {
    font-size: 1.777rem;
}
pre,
code {
    font-size: 1.2rem;
    font-family: Consolas, "Andale Mono", "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace;
    color: rgba(255, 255, 255, 0.75);
    white-space: pre-wrap;
}
small{
    font-size: 0.777rem;
}

strong {
    color: rgba(255, 162, 87, 1);
  }
  
  ul {
    margin: 0 1.44em;
  }
  
  /* end of reset */

/*basic styling */
body{
    min-height: 110vh;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgba(240, 240, 240, 1);
    background-color: rgb(0, 0, 0);
}

h1{
        font-family: "Faster One", system-ui;
        font-weight: 400;
        font-size: 100px;
        font-style: normal;
        text-align: center;
        color: #685BC7;
      
}

h2 {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 255, 255);
    text-align: center;
}

/* anchor tag pseudo elements */
a:link,
a:visited {
    color: rgba(151, 193, 234, 0.85);
    /*transition: color 0.5s;*/
}

a:hover,
a:focus {
    color:rgb(97, 52, 95);
    text-decoration: none;
    /*background-color: rgba(240, 240, 240, 0.15);*/
}

a:active {
    color: rgba(151, 193, 234, 0.85);
  }
  
  /* end of basic styling */
  
  header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 0.5em;
    width: 100%;
    height: 75px;
    display: grid;
    grid-template-columns: 1fr auto;
    background-color: #F9F575;
  }
  
  header h1 {
    font-size: 1.44em;
    display: inline-block;
  }
  header nav a {
    padding: 0.5em;
    line-height: 1.44rem;
  }
  
  main {
    padding: 0.5em;
    margin-top: 125px;
  }

  img#capybara{
    display: block;
    margin: auto;
    width: 20%;
  }
  
  .capybara{
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  }

  h2.purple{
    color: #685BC7;
    font-size: 40px;
    font-weight: bold;
  }