/*  Global styles  */
  :root {

    /*--accent-purple: #d15eff;*/
    --accent-purple: #ac40f9;
    --background-purple: #fefaff;

    scroll-behavior: smooth;


    font-family: "Open Sans", Verdana, sans-serif;
    font-size: 18px;
  }

  /*  FONTS  */

    h1, h2, h3, h4, h5, h6 {
      font-family: "Varela Round", Helvetica, sans-serif;

    }


/*  BODY  */

  body {
    background-color: var(--background-purple);
    margin: 0;
  }

  /*  HEADER  */

  header {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 999;
    opacity: 0.98;

    background-color: var(--accent-purple);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  #home-page-link {
    margin: 0.5em 10px;
  }

  nav {
    margin: 0;
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  nav > * {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 1.4em;
  }




  /*  MAIN-CONTENT  */

  #MAIN-CONTENT {
    margin: 0;
    margin-top: 85px;
    margin-bottom: 40px;

  }

  #projects-section {
    margin-left: 7vw;
    margin-right: 7vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .project-display {
    border: none;
    height: 450px;
    width: 600px;
    margin-bottom: 4vh;
    transition: all 0.3s;
  }
  .project-display:hover {
    transform: scale(1.03);
  }
  .project-display:focus {
    position: absolute;
    margin: auto;
    width: 50%;
    height: 50%;
    transform: scale(2);
  }
