* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #f5f5f5;
  min-width: 371px;
  max-width: 2500px;
  margin: 0 auto;
  overflow-x: hidden !important;
}

/* Start Splash Screen */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #00000f;
  z-index: 9999;
  transition: 1s;
}
/* End Splash Screen */

/* Start Logo */
#logo {
  max-width: 100%;
  padding-left: 7rem;
  padding-right: 7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fill 0.4s ease forwards 4s;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#logo path:nth-child(1) {
  stroke-dasharray: 572px;
  stroke-dashoffset: 572px;
  animation: line-anim 1.8s ease forwards 0.1s;
}
#logo path:nth-child(2) {
  stroke-dasharray: 490px;
  stroke-dashoffset: 490px;
  stroke-linecap: round;
  animation: line-anim 1.8s ease forwards 0.5s;
}
#logo path:nth-child(3) {
  stroke-dasharray: 549px;
  stroke-dashoffset: 549px;
  stroke-linecap: round;
  animation: line-anim 1.8s ease forwards 0.8s;
}
#logo path:nth-child(4) {
  stroke-dasharray: 490px;
  stroke-dashoffset: 490px;
  stroke-linecap: round;
  animation: line-anim 1.8s ease forwards 1s;
}
#logo path:nth-child(5) {
  stroke-dasharray: 830px;
  stroke-dashoffset: 830px;
  stroke-linecap: round;
  animation: line-anim 1.7s ease forwards 1.4s;
}
#logo path:nth-child(6) {
  stroke-dasharray: 700px;
  stroke-dashoffset: 700px;
  stroke-linecap: round;
  animation: line-anim 2s ease forwards 2.9s;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fill {
  from {
    fill: transparent;
  }
  to {
    fill: #a0aecd;
  }
}
/* End Logo */

/* Changing Color Background - Start */
.panel {
  position: relative;
}
.introspace {
  margin-top: 15rem;
}
/* Changing Color Background - End */

.quotesection {
  display: flex;
  flex-direction: column;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  /*
    justify-content: center;
  left: 50%; 
  transform: translateX(-50%); */
}

.arrowdown {
  height: 3em;
  animation: forward1 0.5s linear both infinite alternate, linear 0.8s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  align-items: center;
  margin-top: 370px;
  fill: #c8bfd9;
}

@keyframes forward1 {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(20px);
  }
}

#quote {
  position: relative;
  padding: 5rem;
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
}

#quotetext {
  padding-top: 10rem;
  z-index: 2;
  position: absolute;
  max-width: 500px;
  min-width: 500px;
  top: -80px;
  text-align: center;
  font-weight: 100;
  font-size: 2.3rem;
  margin-left: 12rem;
  margin-right: 12rem;
}

#invent {
  background-image: linear-gradient(270deg, #008ebb, #c8bfd9, #fcd69d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200%;
  background-position: -200%;
  animation: mymove 2s infinite alternate-reverse;
}

@keyframes mymove {
  from {
    background-position: 0%;
  }
  to {
    background-position: 100%;
  }
}

#quotegradient {
  float: left;
  z-index: -1;
  position: static;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 3rem;
  background-image: linear-gradient(270deg, #008ebb, #c8bfd9, #fcd69d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200%;
  background-position: -200%;
  animation: mymove 2s infinite alternate-reverse;
}

@keyframes mymove {
  from {
    background-position: 0%;
  }
  to {
    background-position: 100%;
  }
}

#quotelines {
  float: right;
  z-index: -2;
  position: static;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  padding-left: 4rem;
}

.line {
  margin-top: 10rem;
  margin-bottom: 15rem;
  width: 100%;
  border-bottom: 0.2rem solid rgba(211, 211, 211, 0.3);
}

.pin-spacer {
  width: 0 !important;
}

/* Start About */

.headingtext {
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  color: white;
}

.headingtexttitle {
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.aboutcontainer {
  position: relative;
}

.rotatedabout {
  position: absolute;
  transform: rotate(270deg);
  left: 203px;
  top: 57px;
  font-size: 2rem;
  font-weight: 900;
  background-image: linear-gradient(30deg, #008ebb, #c8bfd9, #fcd69d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200%;
  background-position: -200%;
  clip-path: inset(1px);
  animation: mymove 2s infinite alternate-reverse;
}

@keyframes mymove {
  from {
    background-position: 0%;
  }
  to {
    background-position: 100%;
  }
}

.about {
  position: relative;
  display: flex;
  margin-left: 6em;
  margin-right: 6rem;
  padding-top: 2.5em;
  padding-bottom: 20rem;
  color: white;
}

.aboutgrouping {
  display: block;
  padding-left: 20rem;
  padding-right: 5rem;
}

.about-left {
  padding-left: 2rem;
  padding-right: 1rem;
  margin-bottom: 3.5rem;
}

.about-right {
  padding-left: 1rem;
  padding-right: 1em;
}
ul li {
  list-style-type: circle;
  color: #c8bfd9;
  margin-top: 1rem;
  flex: auto;
}

li span {
  color: white;
}

.skillslist {
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 1rem;
  width: 100%;
}

.liststyles {
  padding: 1rem;
}

/* End About */

/* Start Projects*/

.projectcontainer {
  position: relative;
}

.rotatedprojects {
  position: absolute;
  transform: rotate(270deg);
  left: 225px;
  top: 65px;
  font-size: 2rem;
  font-weight: 900;
  background-image: linear-gradient(270deg, #008ebb, #c8bfd9, #fcd69d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 150%;
  background-position: -100%;
  clip-path: inset(1px);
  animation: mymove 2s infinite alternate-reverse;
}

@keyframes mymove {
  from {
    background-position: 0%;
  }
  to {
    background-position: 100%;
  }
}

#projectsintro {
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  color: white;
  padding-bottom: 1rem;
}

.left {
  margin-top: 10.5rem;
  margin-left: 7rem;
}

.livesymbol {
  width: 1.2rem;
}

.githubsymbol {
  width: 1.2rem;
}

.skills {
  position: absolute;
  transform: rotate(270deg);
  left: -60px;
  top: 180px;
  font-size: 1.2em;
}

.skills1 {
  position: absolute;
  transform: rotate(270deg);
  left: -60px;
  top: 180px;
  font-size: 1.2em;
}

.pwrapper {
  margin-left: 25em;
  margin-right: 25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
  margin-bottom: 12rem;
}

.projectsoverall {
  margin-left: 6em;
}

.pbox {
  padding: 2rem;
  height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pbox:nth-child(1) {
  background: linear-gradient(to bottom, #bde0fe, #feedca);
}

.pbox:nth-child(2) {
  background: linear-gradient(to bottom, #cfe0c3, #feedca);
}

.pbox:nth-child(3) {
  background: linear-gradient(to bottom, #edbfb7, #feedca);
}

.pbox:nth-child(4) {
  background: linear-gradient(to bottom, #e8d7f1, #cae9ff);
}

/* Projects Hover Start*/
.pbox:hover a svg,
.pbox:hover a,
.pbox:hover svg,
.pbox:hover div {
  color: white;
  fill: white;
}

.pbox:nth-child(1):hover {
  background: linear-gradient(to bottom, #00000f, #00000f);
  border: solid white 1.5px;
}

.pbox:nth-child(2):hover {
  background: linear-gradient(to bottom, #00000f, #00000f);
  border: solid white 1.5px;
}

.pbox:nth-child(3):hover {
  background: linear-gradient(to bottom, #00000f, #00000f);
  border: solid white 1.5px;
}

.pbox:nth-child(4):hover {
  background: linear-gradient(to bottom, #00000f, #00000f);
  border: solid white 1.5px;
}

/* Projects Hover End*/

.learnmore {
  display: flex;
  font-weight: 650;
  color: #5a5a5a;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  text-decoration: none;
  align-items: center;
  font-size: 0.8em;
}

.doublearrow {
  margin-left: 0.5rem;
  width: 0.7rem;
  height: 0.7rem;
  fill: #5a5a5a;
  animation: forward 0.8s linear both infinite alternate, linear 0.8s;
}

.linkgroup a {
  text-decoration: none;
}

@keyframes forward {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(10px);
  }
}
/* End Projects*/

/* Start Contacts*/
.contactcontainer {
  position: relative;
}

.rotatedcontact {
  position: absolute;
  transform: rotate(270deg);
  left: -53px;
  top: 154px;
  font-size: 2rem;
  font-weight: 900;
  background-image: linear-gradient(270deg, #008ebb, #c8bfd9, #fcd69d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200%;
  background-position: -200%;
  clip-path: inset(1px);
  animation: mymove 1.7s infinite alternate-reverse;
}

@keyframes mymove {
  from {
    background-position: 0%;
  }
  to {
    background-position: 100%;
  }
}

.contact {
  display: flex;
  margin-left: 6em;
  padding: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  max-width: 800px;
  color: white;
}

#githublogo {
  position: static;
  width: 20px;
  margin: 1rem;
}

#linkedinlogo {
  position: static;
  width: 18px;
  margin: 1rem;
}

#email {
  position: static;
  width: 20px;
  margin: 1rem;
}

#file {
  position: static;
  width: 13px;
  margin: 1rem;
}

#logos {
  position: relative;
  display: flex;
  justify-content: center;
}

.button {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
  border-radius: 5px;
  padding: 1rem, 2rem, 1rem, 2rem;
  width: 50%;
  height: 45px;
  border: 3px solid #c8bfd9;
  color: #c8bfd9;
  background-color: #00000f;
  font-size: 1.3rem;
  font-weight: 600;
}

.button:hover {
  background-color: rgba(200, 191, 217, 1);
  box-shadow: 0 5px 20px rgba(200, 191, 217, 0.4);
  color: white;
}

.submitform {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  color: white;
}

#result-text {
  font-weight: 600;
  color: #c8bfd9;
  margin: 0.5rem;
  font-family: "Open Sans", sans-serif;
}

.contactblanks {
  background-color: transparent;
  width: 50%;
  border: 0.15rem solid rgba(169, 169, 169, 0.3);
  margin: 0.5rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.3rem;
}

#emaillabel {
  width: 50%;
  padding-left: -1rem;
}

.footertext {
  color: white;
  text-align: center;
  padding: 1rem;
}

#logos a {
  fill: white;
}

.footer1 {
  border-top: 0.08rem solid rgba(255, 255, 255, 0.8);
  padding-top: 0.5rem;
}

.contactd {
  color: #bde0fe;
}

.contactblanks {
  color: white;
}

.paragraphtext {
  color: white;
}

input,
select,
textarea {
  color: white;
}

input[type="text"] {
  color: white;
}

input::placeholder {
  color: white;
}

/* End Contacts*/
@media only screen and (max-width: 2500px) {
  .learnmore {
    margin-top: -0.5em;
  }

  .headingtexttitle {
    font-size: 1.5em;
  }
}

@media only screen and (min-width: 1900px) {
  .paragraphtext {
    font-size: 1.2em;
  }

  .liststyles {
    font-size: 1.2em;
  }

  .projecttext {
    font-size: 1.2em;
    padding-right: 1.5rem;
  }

  .contactblanks {
    font-size: 1.2em;
  }

  .headingtext {
    font-size: 2em;
  }

  .headingtexttitle {
    font-size: 2em;
  }

  #projectsintro {
    font-size: 2em;
  }

  #githublogo {
    width: 30px;
    margin: 1.5rem;
  }

  #linkedinlogo {
    position: static;
    width: 28px;
    margin: 1.5rem;
  }

  #email {
    position: static;
    width: 30px;
    margin: 1.5rem;
  }

  #file {
    position: static;
    width: 22px;
    margin: 1.5rem;
  }

  #logos {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .pin-spacer {
    width: 0 !important;
  }
}

@media only screen and (min-width: 1200px) {
  .projectssection {
    padding-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pwrapper {
    margin-left: 8rem;
    margin-right: 6rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    margin-bottom: 10rem;
    position: relative;
  }

  .project {
    max-width: 2000px;
  }

  .about {
    margin-left: 1em;
    margin-right: 1rem;
    padding-bottom: 18rem;
    color: white;
    max-width: 800px;
  }

  .about1 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .aboutgrouping {
    display: block;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .about-left {
    padding-left: 2.5rem;
    padding-right: 0rem;
    margin-bottom: 1.5rem;
  }

  .about-right {
    padding-left: 2.5rem;
    padding-right: 0rem;
  }

  .rotatedabout {
    left: -45px;
    top: 56px;
  }

  .footertext {
    font-size: 0.8rem;
  }

  .pbox {
    padding: 2rem;
  }

  .left {
    padding-top: 2.5em;
    padding-left: 4em;
  }

  .skills {
    margin-left: -40px;
    padding-top: 100px;
  }

  .skills1 {
    margin-left: -35px;
    padding-top: 80px;
  }

  .headingtexttitle {
    font-size: 2.2em;
  }

  .pin-spacer {
    width: 0 !important;
  }
}
@media only screen and (max-width: 1200px) {
  .introspace {
    margin-top: 5.5rem;
  }

  .left {
    padding-top: 3.5rem;
    padding-left: 2.5rem;
  }

  .skills {
    margin-left: -30px;
    padding-left: -650px;
    padding-top: 100px;
  }

  .skills1 {
    margin-left: -30px;
    padding-left: -990px;
    padding-top: 70px;
  }
  .pin-spacer {
    width: 0 !important;
  }
}

@media only screen and (min-width: 1015px) {
  .projectssection {
    padding-bottom: 4rem;
  }
  .pwrapper {
    margin-left: 8rem;
    margin-right: 6rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    margin-bottom: 10rem;
  }

  .about {
    margin-left: 1em;
    margin-right: 1rem;
    padding-bottom: 15rem;
    color: white;
    max-width: 1150px;
  }

  .aboutgrouping {
    display: block;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .about-left {
    padding-left: 2.5rem;
    padding-right: 0rem;
    margin-bottom: 1.5rem;
  }

  .about-right {
    padding-left: 2.5rem;
    padding-right: 0rem;
  }

  .rotatedabout {
    left: -45px;
    top: 56px;
  }

  .rotatedprojects {
    left: -55px;
    top: 56px;
  }

  .footertext {
    font-size: 0.8rem;
  }

  .pbox {
    padding: 2rem;
  }

  .left {
    margin-top: 8rem;
    margin-left: 3rem;
  }

  .skills {
    left: -55px;
    top: 160px;
  }

  .skills1 {
    left: -107px;
    top: 150px;
  }
  .pin-spacer {
    width: 0 !important;
  }
}

@media only screen and (max-width: 1015px) {
  .projectimages {
    padding-right: 0rem;
  }

  .about {
    padding-bottom: 1em;
  }

  .aboutgrouping {
    display: block;
  }

  .about-left {
    padding-bottom: 2em;
  }

  .about-right {
    padding-bottom: 5rem;
  }

  .projectsoverall {
    padding-bottom: 1em;
  }

  .headingtext {
    padding-top: 1rem;
  }

  .projecttext {
    padding-top: 0.5rem;
  }

  .pwrapper {
    margin-left: 8rem;
    margin-right: 6rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    margin-bottom: 10rem;
  }

  .about {
    margin-left: 1em;
    margin-right: 1rem;
    padding-bottom: 15rem;
    color: white;
  }

  .aboutgrouping {
    display: block;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .about-left {
    padding-left: 2.5rem;
    padding-right: 0rem;
    margin-bottom: 1.5rem;
  }

  .about-right {
    padding-left: 2.5rem;
    padding-right: 0rem;
  }

  .rotatedabout {
    left: -45px;
    top: 56px;
  }

  .rotatedprojects {
    left: -55px;
    top: 56px;
  }

  .footertext {
    font-size: 0.8rem;
  }

  .pbox {
    padding: 2rem;
  }

  .left {
    margin-top: 8rem;
    margin-left: 3rem;
  }

  .skills {
    left: -55px;
    top: 160px;
  }

  .skills1 {
    left: -107px;
    top: 150px;
  }
  .learnmore {
    margin-top: -0.5em;
  }
  .pin-spacer {
    width: 0 !important;
  }
}

@media only screen and (max-width: 945px) {
  .pbox {
    padding: 1rem;
    height: 20rem;
    margin-bottom: 1rem;
  }

  .left {
    margin-left: 1.5rem;
    margin-top: 5.5rem;
  }

  .skills {
    margin-left: -5px;
    padding-left: -85px;
    padding-top: 1rem;
    font-size: 1.1em;
  }

  .skills1 {
    left: -75px;
    padding-top: 0rem;
    font-size: 1.1em;
  }

  .headingtexttitle {
    font-size: 1.3em;
  }
  .learnmore {
    margin-top: -0.8em;
  }
  .pin-spacer {
    width: 0 !important;
  }
}

@media only screen and (max-width: 800px) {
  .projectsoverall {
    padding-bottom: 2em;
  }

  .headingtext {
    font-size: 1.2rem;
  }

  .pwrapper {
    margin-left: 8rem;
    margin-right: 6rem;
    display: block;
    margin-bottom: 10rem;
  }

  .about {
    margin-left: 1em;
    margin-right: 1rem;
    padding-bottom: 15rem;
    color: white;
  }

  .aboutgrouping {
    display: block;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .about-left {
    padding-left: 2.5rem;
    padding-right: 0rem;
    margin-bottom: 1.5rem;
  }

  .about-right {
    padding-left: 2.5rem;
    padding-right: 0rem;
  }

  .rotatedabout {
    left: -45px;
    top: 56px;
  }

  .rotatedprojects {
    left: -55px;
    top: 56px;
  }

  .footertext {
    font-size: 0.8rem;
  }

  .pbox {
    padding: 2rem;
    height: 25rem;
    margin-bottom: 3rem;
  }

  .left {
    margin-top: 7.5rem;
    padding-left: 7rem;
  }

  .skills {
    padding-left: 10px;
    top: 190px;
    font-size: 1.4em;
  }

  .skills1 {
    left: -90px;
    top: 180px;
    font-size: 1.4em;
  }
  

  .headingtexttitle {
    font-size: 1.8em;
  }
  .pin-spacer {
    width: 0 !important;
  }
}

@media only screen and (max-width: 750px) {
  .navbar {
    justify-content: flex-end;
    border-bottom: none;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .right-nav {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: #f5f5f5;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }

  .navitem {
    margin: 16px 0;
  }

  .right-nav.active {
    left: 0;
    background-color: white;
    display: flex;
  }

  #quotetext {
    font-size: 2.3rem;
    max-width: 450px;
    min-width: 450px;
    top: -68px;
  }

  #quotetext {
    font-size: 2rem;
  }

  .left {
    padding-left: 4rem;
  }

  .skills {
    top: 200px;
  }

  .arrowdown {
    height: 2em;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 350px;
  }

  .line {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
  .pin-spacer {
    width: 0 !important;
  }
  .quotesection {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 654px) {
  .left {
    margin-top: 7.5rem;
    padding-left: 5rem;
  }

  .skills {
    padding-left: 10px;
    top: 190px;
    font-size: 1.4em;
  }

  .skills1 {
    left: -90px;
    top: 180px;
    font-size: 1.4em;
  }

  .headingtexttitle {
    font-size: 1.5em;
  }
  .pin-spacer {
    width: 0 !important;
  }
  .quotesection {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 625px) {
  .left {
    padding-left: 3.5rem;
  }

  .headingtexttitle {
    font-size: 1.3em;
  }

  .footertext {
    font-size: 0.6em;
  }
  .pin-spacer {
    width: 0 !important;
  }
  .quotesection {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 575px) {
  .introspace {
    margin-top: 3rem;
  }

  #quotetext {
    font-size: 1.8rem;
    max-width: 400px;
    min-width: 400px;
    top: -60px;
  }

  .rotatedabout {
    font-size: 1.5rem;
    left: -80px;
  }

  .about {
    margin-left: 3.5em;
    padding-bottom: 1em;
  }

  .rotatedprojects {
    font-size: 1.5rem;
    left: -50px;
  }

  .projectsoverall {
    margin-left: 3.5em;
  }

  .headingtext {
    font-size: 1.2rem;
  }

  .rotatedcontact {
    font-size: 1.5rem;
    left: -45px;
  }

  .contact {
    margin-left: 3.5em;
  }

  .contactblanks {
    width: 90%;
  }

  #emaillabel {
    width: 90%;
  }

  button {
    width: 90%;
  }

  .pwrapper {
    margin-left: 4rem;
    margin-right: 2rem;
    display: block;
    margin-bottom: 10rem;
  }

  .about {
    margin-left: 1em;
    margin-right: 1rem;
    padding-bottom: 15rem;
    color: white;
  }

  .aboutgrouping {
    display: block;
    padding-left: 1rem;
    padding-right: 0rem;
  }

  .about-left {
    padding-left: 2.5rem;
    padding-right: 0rem;
    margin-bottom: 1.5rem;
  }

  .about-right {
    padding-left: 2.5rem;
    padding-right: 0rem;
  }

  .rotatedabout {
    left: -40px;
    top: 56px;
  }

  .footertext {
    font-size: 0.8rem;
  }

  .pbox {
    padding: 2rem;
    height: 23rem;
    margin-bottom: 3rem;
  }

  .left {
    margin-top: 7rem;
    margin-left: 3rem;
  }

  .skills {
    margin-left: -25px;
    padding-left: 30px;
    top: 195px;
    font-size: em;
  }

  .skills1 {
    padding-left: -20px;
    top: 170px;
    font-size: 1.3em;
  }

  .headingtexttitle {
    font-size: 1.5em;
  }
  .pin-spacer {
    width: 0 !important;
  }
  .quotesection {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 480px) {
  #quotetext {
    font-size: 1.4rem;
    max-width: 300px;
    min-width: 300px;
    top: -45px;
  }

  .navbar {
    padding-bottom: 0rem;
  }

  .aboutgrouping {
    max-width: 425px;
  }

  .about-right {
    max-width: 425px;
  }

  .liststyles {
    font-size: 1.1em;
    max-width: 425px;
  }

  ul {
    flex-wrap: wrap;
  }

  li {
    flex-basis: 100%;
  }

  .pwrapper {
    margin-left: 4rem;
    margin-right: 2rem;
    display: block;
    margin-bottom: 10rem;
  }

  .about {
    margin-left: 1em;
    margin-right: 1rem;
    padding-bottom: 15rem;
    color: white;
  }

  .aboutgrouping {
    display: block;
    padding-left: 1rem;
    padding-right: 0rem;
  }

  .about-left {
    padding-left: 2.5rem;
    padding-right: 0rem;
    margin-bottom: 1.5rem;
  }

  .about-right {
    padding-left: 2.5rem;
    padding-right: 0rem;
  }

  .rotatedabout {
    left: -40px;
    top: 56px;
  }

  .footertext {
    font-size: 0.8rem;
  }

  .pbox {
    padding: 2rem;
    height: 20rem;
    margin-bottom: 3rem;
  }

  .left {
    margin-top: 5rem;
    margin-left: 1.5rem;
  }

  .skills {
    left: -60px;
    top: 160px;
    font-size: 1.3em;
  }

  .skills1 {
    left: -80px;
    top: 150px;
    font-size: 1.15em;
  }

  .headingtexttitle {
    font-size: 1.1em;
  }
  .pin-spacer {
    width: 0 !important;
  }
  .quotesection {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 410px) {
  #quotetext {
    font-size: 1.1rem;
    max-width: 260px;
    min-width: 260px;
    top: -40px;
  }

  #quotegradient {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding-right: 2rem;
  }

  #quotelines {
    margin-top: 1rem;
    padding-top: 1rem;
    padding-left: 2rem;
  }
  .pwrapper {
    margin-left: 4rem;
    margin-right: 2rem;
    display: block;
    margin-bottom: 10rem;
  }

  .about {
    margin-left: 1em;
    margin-right: 0rem;
    padding-bottom: 15rem;
    color: white;
  }

  .aboutgrouping {
    display: block;
    padding-left: 1rem;
    padding-right: 0rem;
  }

  .about-left {
    padding-left: 2.5rem;
    padding-right: 0rem;
    margin-bottom: 1.5rem;
  }

  .about-right {
    padding-left: 2.5rem;
    padding-right: 0rem;
  }

  .rotatedabout {
    left: -40px;
    top: 56px;
  }

  .footertext {
    font-size: 0.8rem;
  }

  .pbox {
    padding: 2rem;
    height: 20rem;
    margin-bottom: 3rem;
  }

  .left {
    margin-top: 6rem;
    margin-left: -0.5rem;
  }
  .pin-spacer {
    width: 0 !important;
  }
  .quotesection {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 379px) {
  #quotetext {
    font-size: 1rem;
    max-width: 200px;
    min-width: 200px;
    top: -35px;
  }

  #quotegradient {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding-right: 1rem;
  }

  #quotelines {
    margin-top: 1rem;
    padding-top: 1rem;
    padding-left: 1rem;
  }

  .projectsoverall {
    padding-bottom: 2em;
  }

  .liststyles {
    font-size: 1em;
  }

  .contact {
    margin-left: 2.8rem;
  }

  .pwrapper {
    margin-left: 4rem;
    margin-right: 2rem;
    display: block;
    margin-bottom: 10rem;
  }

  .about {
    margin-left: 1em;
    margin-right: 1rem;
    padding-bottom: 15rem;
    color: white;
  }

  .aboutgrouping {
    display: block;
    padding-left: 1rem;
    padding-right: 0.5rem;
  }

  .about-left {
    padding-left: 2.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .about-right {
    padding-left: 2.5rem;
    padding-right: 0.5rem;
  }

  .rotatedabout {
    left: -40px;
    top: 56px;
  }

  .footertext {
    font-size: 0.8rem;
  }

  .pbox {
    padding: 2rem;
    height: 18rem;
    margin-bottom: 3rem;
  }

  .left {
    margin-top: 4.5rem;
    margin-left: 0rem;
  }

  .skills {
    padding-left: 45px;
    padding-top: 2rem;
    font-size: 1em;
  }

  .skills1 {
    padding-left: 30px;
    top: 150px;
    font-size: 1em;
  }

  .headingtexttitle {
    font-size: 1em;
  }

  .learnmore {
    margin-top: -1em;
    font-size: 0.5em;
  }

  .livesymbol {
    width: 1rem;
  }

  .githubsymbol {
    width: 1rem;
  }
  .pin-spacer {
    width: 0 !important;
  }

  .quotesection {
    width: 100%;
    height: auto;
  }
}
