/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  
  display: flex;
  justify-content: center;
  font-family:'charter regular'
}

.container {
  max-width: 800px;
}


@font-face {font-family: "charter regular";
font-style: normal;
font-weight: normal;
font-stretch: normal;
src: url('https://troughwater.neocities.org/fonts/charter_regular.woff2') format('woff2');
}

@font-face {font-family: "source code pro medium";
font-style: normal;
font-weight: normal;
font-stretch: normal;
src: url('https://troughwater.neocities.org/fonts/SourceCodePro-Medium.ttf.woff2') format('woff2');
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

ul li a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'source code pro medium'
}

ul li a:hover {text-decoration:underline;
}


a {
    color: white;
}

a:visited {
    color: white;
}

a:hover {
    color: white;
}

a:active {
    color: white;
}

a {
  text-decoration: none;
}

a { 
  font-family: 'source code pro medium';
 
}

h1 {
  margin-top: 20px;
  text-align: center;
  font-size: 48px;
}

p {
  font-size: 25px;
  font-family: 'charter regular'
}

@media only screen and (max-width: 1200px) {
    body {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1100px) {
    body {
        font-size: 15px;
    }
}


@media only screen and (max-width: 800px) {
    body {
        font-size: 13px;
    }

    .profile_img {
        width: 170px;
    }
}

@media only screen and (max-width: 400px) {
    body {
        font-size: 12px;
    }

    .profile_img {
        width: 160px;
    }
}

@media only screen and (max-width: 375px) {
    body {
        font-size: 11px;
    }

    .profile_img {
        width: 150px;
    }
}