/*Styles for projects use a*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
body {
    background-color: #14213d;
    font-family: 'Space Grotesk', sans-serif;
    background-color: #ff5447;
    margin: 0;
    padding: 40px;
  }

  h1 {
    color: #000000;
    font-size: 38px;
    margin-bottom: 10px;
  }

  h2 {
    color: #232323;
    font-size: 24px;
    margin-bottom: 10px;
  }

  p {
    color: #232323;
    font-size: 16px;
    margin-bottom: 20px;
  }

  a,
  a:link,
  a:visited,
  a:active {
    text-decoration: none;
    cursor: pointer !important;
    color: #fff;
  }
  
  a:hover {
    cursor: pointer !important;
    text-decoration: line-through;
    color: #e5e5e5;
  }

  img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }