body{
    background-color: black;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='199' viewBox='0 0 100 199'%3E%3Cg fill='%23b8b8b8' fill-opacity='0.4'%3E%3Cpath d='M0 199V0h1v1.99L100 199h-1.12L1 4.22V199H0zM100 2h-.12l-1-2H100v2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    padding: 0%;
    margin: 0%;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.engineer-background{
    background-color: black;

  background-image:
    /* more gradual fade */
    linear-gradient(
      to bottom,
      black 0%,
      rgba(0,0,0,0.85) 10%,
      rgba(0,0,0,0.35) 25%,
      rgba(0,0,0,0.10) 40%,
      rgba(0,0,0,0.10) 60%,
      rgba(0,0,0,0.35) 75%,
      rgba(0,0,0,0.85) 90%,
      black 100%
    ),

    /* grid */
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);

  background-size:
    100% 100%,
    100px 100px,
    100px 100px;
}

.grid-container{
    display: grid;
    grid-template-areas: "l r";
    grid-template-columns: 80% 20%;
}

.about{
    margin-left: 2vw; 
    font-size: 2vh; 
    color: white; 
    font-family: inter;
    min-width: 50vw;
    width: 90vw;
}

.contact{
    margin-left: 30px;
    font-family: inter;
    color: white;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 10px;
    width: 50vh;
    transition-duration: 500ms;
    cursor: pointer;
    text-decoration: none;
}

.contact:hover{
    background-color: gray;
}

.flex-around-horizontal{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: relative;
}

.flex-center{
    display: flex;
    justify-content: center;
}

.grid{
    display: grid;
    grid-template-columns: 27.5% 27.5% 27.5%;
    column-gap: 5vh;
}

.large-graphic-button{
    border: gray solid 1px;
    border-radius: 20px;
    box-shadow: 10px 10px 10px black;
    color: white;
    transition-duration: 500ms;
    background-color: rgb(17, 17, 17);
    cursor: pointer;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.large-graphic-button:hover{
    border: 1px solid white;
}

.progress-bar{
    border-radius: 100%;
    border: solid gray 1px;
}

.legend{
    width: 2vw;
    height: auto;
    border: solid white 1px;
}

.legend-text{
    color: lightgray;
    font-family: plex;
    display: inline;
    position: relative;
    left: 1vw;
    font-size: 2vh;
}

.hr-fade{
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(161, 161, 161));
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 5px;
}

@media(max-width: 950px){
    .flex-around-horizontal{
        flex-direction: column;
    }

    .engineering-title{
        margin-left: 5vw;
    }
}