

#PhotoBox
{
    height: 457px;
    /* border: 1px solid black; */
    /* margin-top: 30px; */
    background-image: url("./photos/MainBackgrounds/Bue2.png");
    background-size: cover;
    background-position: inherit;
    background-repeat: no-repeat;
}

#PhotoBox > img
{
    position: absolute;
   top: 125.5px;
   right: 10px;
   z-index: 1;
   height: 35%;
   border-radius: 200px;
}

#AboutMe
{
    text-align: left;
    color: rgb(0, 0, 0);
    padding: 20px;
    /* background-color: rgba(0, 0, 0, 0.295); */
}

#AboutMe > p
{
    padding-right: 200px;
}

.phoneEmail
{
    margin-left: 10px;
}

.linkToEmail
{
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.linkToEmail:hover
{
    color: rgb(79, 13, 233);
}

.headings_personal
{
  font-family:'Sansita Swashed', cursive;
}

.headings-content
{
  font-family: 'Montserrat', sans-serif;
}

#techKnown, #ProficiencyBox
{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

#TechStack, #ProficiencyMain
{
    padding: 10px;
    margin-top: 40px;
}

#TechStack > h2
{
    text-align: center;
    /* border-bottom: 1px solid gainsboro; */
}

#ProficiencyMain > h2
{
    text-align: center;
}

#techKnown > div
{
    flex: 1;
    padding: 20px 0px;
    min-width: 120px;
    max-width: 130px;
    text-align: center;
    border-radius: 10px;
    margin: 10px;
    -webkit-box-shadow: 0px 2px 7px 0px rgba(50, 50, 50, 0.88);
    -moz-box-shadow:    0px 2px 7px 0px rgba(50, 50, 50, 0.88);
    box-shadow:         0px 2px 7px 0px rgba(50, 50, 50, 0.88);
}

#techKnown > div > p
{
  font-family:'Sansita Swashed', cursive;
}
 
#ProficiencyBox > div
{
    flex: 1;
    padding: 20px 20px;
    min-width: 240px;
    max-width: 250px;
    text-align: center;
    border-radius: 10px;
    margin: 10px 40px;
    -webkit-box-shadow: 0px 2px 7px 0px rgba(50, 50, 50, 0.88);
    -moz-box-shadow:    0px 2px 7px 0px rgba(50, 50, 50, 0.88);
    box-shadow:         0px 2px 7px 0px rgba(50, 50, 50, 0.88);
}

#ProficiencyBox > div > h4
{
  font-family:'Sansita Swashed', cursive;
}

.resumeBtn
{
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

#ProficiencyBox > div > p
{
  font-family: 'Montserrat', sans-serif;
}

.githubStats
{
    text-align: center;
}

.navLinksContainer
{

  font-family: 'Montserrat', sans-serif;
}


.navLinks:focus
{
  background-color: rgba(255, 0, 0, 0.479);
}

#HoursSpent
{
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  padding: 20px;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(94,131,204,1) 0%, rgba(0,212,255,1) 100%);
  background-image: url("./photos/MainBackgrounds/Blue3.png");
  background-size: inherit;
  background-position: center;
  /* background-repeat: repeat-x; */
}

#HoursSpent > p
{
  flex: 1;
 min-width: 200px;
 max-width: 210px;

}

@media only screen and (min-width: 280px) and (max-width: 578px)
{
    #PhotoBox > img
    {
    position: relative;
    top: 285px;
    left:  170px;
    z-index: 1;
    height: 28%;
    }

    #PhotoBox
    {
      background-image: url("./photos/MainBackgrounds/Bue2.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    
    #AboutMe
    {
        position: relative;
        bottom: 120px;
        padding-right: 30px;
        padding-top: 1px;
        padding-bottom: 1px;
    }

    #AboutMe > p
    {
        /* padding-left: px; */
        font-size: 12px;
        padding-right: 10px;
    }

    .phoneEmail
    {
        /* margin-left: px; */
        font-size: 11px;
    }
}

@media only screen and (min-width: 635px) and (max-width: 768px)
{
    #PhotoBox > img
    {
    position: relative;
    top: 335px;
    left:  520px;
    z-index: 1;
    height: 40%;
    }

    #AboutMe
    {
        position: relative;
        bottom: 190px;
        padding-right: 30px;
    }

}


/* PROJECT CARDS */
/* *{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
   */
   h1{
    font-size: 2.5rem;
    font-family: 'Montserrat';
    font-weight: normal;
    color: #444;
    text-align: center;
    margin: 2rem 0;
  }
  
  .wrapper{
    /* width: 90%; */
    margin: 0 auto;
    /* max-width: 80rem; */
  }
  
  .cols{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .col{
    /* width: calc(25% - 2rem); */
    margin: 20px;
    min-width: 300px;
    cursor: pointer;
  }
  
  .container{
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
      -webkit-perspective: 1000px;
              perspective: 1000px;
  }
  
  .front,
  .back{
    background-size: cover;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
    border-radius: 10px;
      background-position: center;
      -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      text-align: center;
      min-height: 350px;
      height: auto;
      border-radius: 10px;
      color: #fff;
      font-size: 1rem;
  }
  
  .back{
    background: #86c7f8;
    background: -webkit-linear-gradient(45deg,  #a2d2f7 0%,#30b5f3 100%);
    background: -o-linear-gradient(45deg,  #a2d2f7 0%,#30b5f3 100%);
    background: linear-gradient(45deg,  #a2d2f7 0%,#30b5f3 100%);
  }
  
  .front:after{
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      content: '';
      display: block;
      opacity: .6;
      background-color: #000;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      border-radius: 10px;
  }
  .container:hover .front,
  .container:hover .back{
      -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  }
  
  .back{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
  }
  
  .inner{
      -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
              transform: translateY(-50%) translateZ(60px) scale(0.94);
      top: 50%;
      position: absolute;
      left: 0;
      width: 100%;
      padding: 2rem;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      outline: 1px solid transparent;
      -webkit-perspective: inherit;
              perspective: inherit;
      z-index: 2;
  }
  
  .container .back{
      -webkit-transform: rotateY(180deg);
              transform: rotateY(180deg);
      -webkit-transform-style: preserve-3d;
              transform-style: preserve-3d;
  }
  
  .container .front{
      -webkit-transform: rotateY(0deg);
              transform: rotateY(0deg);
      -webkit-transform-style: preserve-3d;
              transform-style: preserve-3d;
  }
  
  .container:hover .back{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  
  .container:hover .front{
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  
  .front .inner p{
    font-size: 20px;
    /* margin-bottom: 2rem; */
    font-family:'Sansita Swashed', cursive;
    position: relative;
  }
  
  .front .inner p:after{
    content: '';
    width: 4rem;
    height: 2px;
    position: absolute;
    background: #C6D4DF;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -.75rem;
  }
  
  .front .inner span{
    color: rgba(255, 255, 255, 0.904);
    font-family: 'Montserrat';
    font-weight: 300;
  }
  
  /* @media screen and (max-width: 64rem){
    .col{
      width: calc(33.333333% - 2rem);
    }
  }
  
  @media screen and (max-width: 48rem){
    .col{
      width: calc(50% - 2rem);
    }
  }
  
  @media screen and (max-width: 32rem){
    .col{
      width: 100%;
      margin: 0 0 2rem 0;
    }
  } */