
body {

    font-family: 'Times New Roman';
    font-size: 16px;
    color: #000;
    display: flex;
    margin: 0 auto;
    max-width: none;
    flex-direction: column;

}

@font-face {

  font-family: 'my-handwriting';
  src: url('../static/handwriting-font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}

.top-wrapper {

    margin: 0 auto;
    width: 100%;

}

.header-container { 

    font-family: 'my-handwriting';
    text-align: center;
    font-size: 50px;

}

.button-container {

  justify-content: center;
  display: flex;
  align-items: center;

}

.button-container img {

  width: 100px;
  justify-content: center;

}

.cv-container {
    
    text-align: left;
    position: sticky;
    justify-content: left;
    margin: 0 250px 0px 50px;

}

.cv-container p {

  margin: 0.5rem 0;

}

.cv-container hr {

  border: none;
  background-color: #000;
  height: 1px;
  margin: 1.5rem 0;

}

.nav-container {

    display: flexbox;
    right: 0;
    top: 50%;
    position: fixed; /* static, relative, fixed, sticky, absolute */
    padding-right: 30px;

}

ul, a {

  list-style: none;
  color: black;
  line-height: 25px;
  text-decoration: underline;

}

h1 {

  margin-top: 40px;
  margin-bottom: 20px;

}

h4 {

  margin-bottom: 1px;

}

/* MEDIA QUERIES */

@media (max-width: 768px) {

    .cv-container {
    
    text-align: left;
    position: sticky;
    justify-content: left;
    margin: 0 150px 0px 40px;

    }

    .cv-container p {

    margin: 0.5rem 0;

    }

    .cv-container hr {

    border: none;
    background-color: #000;
    height: 1px;
    margin: 1.5rem 0;

    }

    .nav-container {

    display: flexbox;
    right: 0;
    top: 50%;
    position: fixed; /* static, relative, fixed, sticky, absolute */
    padding-right: 20px;

    }

    .header-container {

    font-size: 30px;
    
  }


}