div {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  
  body,
  html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }
  
  p,
  a {
    font-family: "Titillium Web";
    text-decoration: none;
  }
  
  .Screen {
    width: 100vw;
    height: auto;
    min-height: 100vh;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  
  .Landing_Section {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    justify-content: space-between;
  }

  .Project_Title{
    font-family: 'Poppins';
    font-weight: 900;
    font-size: clamp(1em, 4vw, 5em);
    color: white;
    text-shadow: 0px 0px 5px #404040;
    margin-bottom: 10vh;
    margin-left: 5%;
    text-transform: uppercase;
  }

  .Project_Content_Section{
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .Section_Overlay{
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.4);
    justify-content: flex-end;
  }

  .PCS{
    width: 90vw;
    padding-left: 5vw;
    padding-right: 5vw;
    flex-direction: row;
    justify-content: center;
    padding-top: 5vh;
    padding-bottom: 5vh;
    flex-direction: column;
  }



  .PCS_Container{
    width: 100%;
    height: auto;
    flex-direction: row;
  }

  .PCS1_L, .PCS1_R, .PCS2_L, .PCS2_R{
    width: 50%;
    height: 100%;
  }

  .PCS_Head{
    font-family: 'Titillium Web';
    font-size: clamp(1em, 2.5vw, 3.5em);
    font-weight: 600;
    margin-bottom: 2vh;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: -1px;

  }

  .PCS_Text{
    font-size: clamp(1em, 1.5vw, 2em);
    width: 90%;
  }

  .PCS1_R{
    align-items: center;
    justify-content: center;
  }

  .PCS1_R img{
    width: 90%;
    height: 90%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0px 0px 5px 0px black;
  }
