@font-face {
    font-family: 'HelveticaNowText-Regular';
    src:url('./Assets/Fonts/HelveticaNowText-Regular.ttf.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


h1, h2, p {
    font-weight: normal;
  }

html {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    margin: 0;
    /* height: 100%; */
    width: 100%;

    background-color: rgba(0, 0, 0, 0.95);

    /* overflow: hidden; */

    font-family: 'HelveticaNowText-Regular';
    font-weight: normal;    

    position: relative;
}

main {
    margin: 0%;
    padding: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page_title {
    padding: 3.5rem 2rem;
    margin: 0rem 0 2.5rem;
    text-align: center;
    color: white;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 2rem;
    /* text-shadow: 0 0 0.125em white; */

    width: 100%;
    background-image: url(./Assets/Headers/About-header.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: multiply;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    position: relative;
}
/* 
.logoBox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.mainLogo {
    height: 600px;
    width: 600px;
    margin: 0;
} */

.about {
    color: white;
    font-size: 1.5rem;
    max-width: 55ch;
    margin: 0 0px 20px;
}



@media (max-width: 800px) {
    .about {
        color: white;
        max-width: 40ch;
        margin: 50px 0 0px 0;
        width: 90%;
        margin: -150px 5% 100px;
        text-align: center;
    }

    .page_title {
        margin: 0 0 15rem;
    }
}


::-webkit-scrollbar {
    width: 5px;
  
  }
  
  ::-webkit-scrollbar-track {
    background: rgba(60, 60, 60, .7);
   
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgba(256, 256, 256, 0.2);
    
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(256, 256, 256, 0.6);
  }
  
 