/*class (.), # is an ID (not popular), html element "p","div" */
body {
  background-color:  #fdfdfd;
}  

.project {
    display: flex;
    height: auto;
    margin-bottom: 5rem;
    max-height: 68vh;
    align-items: flex-start; /* top align content */
    gap: 2rem;
  }

  .project:hover {
    cursor: pointer;
  }

  .project:last-child {
    margin-bottom: 15vh;
  }

  .project img {
    object-fit: contain;
    flex-shrink: 0;
    width: 100%;
    max-width: 550px;
    height: auto;
    min-height: 350px;
    max-height: 60vh;
  }

  .current_project {
    margin-top: 4em;
  }

  .current_project:hover {
    cursor: default;
  }

  .project .project_copy {
    padding: 0;
    min-width: 15em;
  }

  .project_copy {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    margin-left: 20px;
    margin-right: 30px;
    max-width: 700px;
  }

  .project_copy_title {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.75em;
    color: #333;
  }

    .project_copy_text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.75em;
    color: #333;
  }

  .project_copy_image {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
  }

  #full_work .project_copy div h3 {
    font-size: 2.5em;
  }

  .project_copy div {
    margin-bottom: 2em;
  }

  .project_copy a {
    font-weight: 400;
    font-size: .8em;
    /*align-self: flex-start;*/
    color: #808080;
  }

  #uxSummary {
    mar.gin-top: 2em;
    font-size: .75em;
    align-self: flex-start;
    font-weight: 400;
    color: #808080;
  }


.btn-revamp {
  background-color: rgb(235, 244, 229); /* green light tint */
  color: rgb(75, 84, 48); /* #3a3a3a; /* dark gray font */
  font-weight: 500;
  font-size: 0.85em;
  padding: 0.6rem 1.4rem;
  border: .5px solid rgba(128, 128, 13, 0.477); 
  border-radius: 999px; /* pill shape */
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 3px rgb(235, 244, 229); 
  width:100%;
}


.btn-revamp:hover {
  background-color: rgb(139, 179, 205);
  color: white;
  border-color:  rgb(139, 179, 205);
  box-shadow: 0 4px 12px rgba(198, 107, 61, 0.3);
}

.btn-allinone {
  background-color: rgba(208, 98, 34, 0.1); /* soft terracotta tint */
  color: #a65429;
  font-weight: 500;
  font-size: 0.85em;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(208, 98, 34, 0.3);
  border-radius: 999px; /* pill shape */
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  width:100%;
}

.btn-allinone:hover {
  background-color: #c66b3d;
  color: white;
  border-color: #c66b3d;
  box-shadow: 0 4px 12px rgba(198, 107, 61, 0.3);
}

.btn-userforms {
  background-color: rgb(229, 221, 250); /* soft terracotta tint */
  color: #365f62;
  font-weight: 500;
  font-size: 0.85em;
  padding: 0.6rem 1.4rem;
  border: 1px solid #4CBCC3;
  border-radius: 999px; /* pill shape */
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  width:100%;
}

/*.btn-userforms:hover {
  background-color: #4CBCC3;
  color: white;
  border-color: #4CBCC3;
  box-shadow: 0 4px 12px rgba(61, 168, 198, 0.3);
}*/

.btn-contmgmt {
  background-color: #fbdea48d; 
  color: #5D2C59;
  font-weight: 500;
  font-size: 0.85em;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(208, 98, 34, 0.3);
  border-radius: 999px; /* pill shape */
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  width:100%;
}

/*.btn-contmgmt:hover {
  background-color: #5D2C59;
  color: white;
  border-color: #5D2C59;
  box-shadow: 0 4px 12px rgba(198, 107, 61, 0.3);
}*/

  .button--disabled {
    cursor: not-allowed;
  }


  .project_copy .details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1em;
  }
  
  .project_copy .details section {
    width: 45%;
    padding: 0
  }
  
  .project_copy .details section h4 {
    width: 100%;
    margin-bottom: .5em;
    border-bottom: .25px solid black;
    font-size: 1.1em;
    padding-bottom: .2em;
  }
  
  .project_copy p {
   line-height: 1.75em;
   font-size: .9em;
   font-family: 'Raleway';
   font-weight: 400;
  }

  .project_copy .subtitle {
    font-size: .9em;
    letter-spacing: 0.075em;
  }
  
  canvas {
    z-index: -1;
    position: absolute;
    top: 0;
    left:0;
  }

  /*highlight animation begin*/

  mark {
    position: relative;
    display: inline-block;
    background: none;
    margin: 0;
    padding: 0;
    outline: none;
  }

  span {
    position: inherit;
    z-index: 1;
    display: inline-block;
    padding: 0 0.1em;
    pointer-events: none;
  }
  
  svg {
    position: absolute;
    top: none;
    left: -10%;
    right: -10%;
    bottom: -10%;
    z-index: -1;
    overflow: hidden;
    margin: auto;
    padding: 0;
    width: 100%;
    height: 42%;
    fill: none;
    stroke-width: 10%;
    /* height from "svg" x 1.125 */
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 200ms ease-in-out;
    will-change: stroke-dashoffset;
    pointer-events: none;
  }

  svg:first-of-type {
    width: 105.5%;
    height: 104%;
   transform: skewX(-17deg);
  }

  svg:last-of-type {
    width: 104%;
    transform: skewX(-12deg);
  }

  .project:hover mark > svg {
    stroke-dashoffset: 0;
  }

  .no-offset {
    stroke-dashoffset: 0;
  }

/*highlight animation end*/

/* @media only screen and (max-width: 1120px) {
  
} */

@media only screen and (max-width: 1000px) {
  .project {
    flex-direction: column;
    margin: 6vh 0;
    max-height: none;
  }

  .project:last-child {
    margin-bottom: 8vh;
  }

  .project img {
    all: initial;
    width: 100%;
    height: 30vh;
    object-fit: contain;
  }

  .project_copy {
    width: 100%;
    margin: 1rem;
  }
}
/*START password font styling*/
/* Target the input element */
input[type="password"]::placeholder {
  /* Apply styles to the placeholder text */
  color: #808080;
  font-family: 'american typewriter';
}

/*END password font styling*/