/*
=============== 
Fonts
===============
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");




/*
=============== 
Variables
===============
*/

:root {
  /* primary/main color */

  /* --clr-primary-5: hsl(42, 78%, 60%); */
  --clr-primary-5: hsl(202, 78%, 60%);

  /* dark shades of primary color*/
  --clr-primary-1: hsl(203, 86%, 17%);
  --clr-primary-2: hsl(203, 77%, 27%);
  --clr-primary-3: hsl(203, 72%, 37%);
  --clr-primary-4: hsl(202, 63%, 48%);

  /* lighter shades of primary color */
  /* --clr-primary-6: hsl(43, 89%, 70%); */
  --clr-primary-6: hsl(200, 89%, 70%);
  --clr-primary-7: hsl(203, 90%, 76%);
  --clr-primary-8: hsl(205, 86%, 81%);
  --clr-primary-9: hsl(205, 90%, 88%);
  --clr-primary-10: hsl(205, 100%, 96%);

  /* darkest grey - used for headings */
  --clr-grey-1: hsl(208, 62%, 4%);
  --clr-grey-2: hsl(210, 39%, 23%);
  --clr-grey-3: hsl(208, 34%, 30%);
  --clr-grey-4: hsl(208, 28%, 39%);

  /* grey used for paragraphs */
  /* --clr-grey-5: hsl(210, 22%, 49%); */
  --clr-grey-5: hsl(200, 31%, 26%);

  /* --clr-grey-6: hsl(207, 23%, 60%); */
  --clr-grey-6: hsl(197, 29%, 30%);

  --clr-grey-7: hsl(212, 28%, 70%);
  --clr-grey-8: hsl(210, 21%, 63%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);

  --ff-primary: "Roboto", sans-serif;
  --ff-secondary: "Open Sans", sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;
}




/*
=============== 
Global Styles
===============
*/

*,
::after,
::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  /* font-family: var(--ff-secondary); */

  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  background: white;
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img:not(.nav-logo) {
  width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: var(--ff-primary);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 0.875rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-5);
}

@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1rem;
  }

  body {
    font-size: 1rem;
  }

  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}

/*  global classes */

.btn {
  text-transform: uppercase;
  background: var(--clr-primary-5);
  color: var(--clr-primary-1);
  padding: 0.375rem 0.75rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  font-weight: 700;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
}

.btn:hover {
  background: var(--clr-primary-7);
}

/* section */
.section {
  padding: 5rem 0;
}

.bg-grey {
  background: var(--clr-grey-10);
}

.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
}

@media screen and (min-width: 992px) {
  .section-center {
    width: 95vw;
  }
}

.underline {
  width: 5rem;
  height: 0.25rem;
  margin-bottom: 1.25rem;
  background: var(--clr-primary-5);
  margin-left: auto;
  margin-right: auto;

}


/* 
=========================================
PROJECT STYLE
=========================================
 */


/*
=============== 
Navbar
===============
*/

.nav-links {
  display: none;
}

.nav {
  height: 5rem;
  padding: 1rem;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.nav-center {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.nav-header {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-header h2 {
  margin-top: 2%;
  /* margin-left: 5%; */
  align-self: left;
}

.nav-btn {
  background: transparent;
  border-color: transparent;
  font-size: 2rem;
  cursor: pointer;
  color: var(--clr-primary-5);
  justify-self: end;

}

.section-title {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title-about {
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (min-width:768px) {
  .nav {
    background: var(--clr-primary-10);
  }

  .nav-btn {
    display: none;
  }

  .nav-center {
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 0 2rem;
    justify-self: end;
  }

  .nav-links a {
    color: var(--clr-grey-1);
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: var(--spacing);
    text-transform: capitalize;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
  }

  .nav-links a:hover {
    color: var(--clr-primary-5);
  }

}

/* fix the navbar */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 2;
  -webkit-box-shadow: var(--dark-shadow);
  box-shadow: var(--dark-shadow);
  border-radius: 0 0 20px 20px;
  opacity: 0.95;
}

/*
=============== 
Sidebar
===============
*/
.side-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--clr-grey-10);
  z-index: 2;
  display: grid;
  place-items: center;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  /* to add later */
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.show-sidebar {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.sidebar-links {
  margin-top: 3rem;
  text-align: center;
}

.sidebar-links a {
  font-size: 2rem;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  text-transform: capitalize;
  color: var(--clr-grey-5);
  display: inline-block;
  letter-spacing: var(--spacing);
  margin-bottom: 1.5rem;
}

.sidebar-links a:hover {
  color: var(--clr-primary-5);
  /* font-size: 2.2rem; */
}

.social-icons {
  display: grid;
  margin-top: 3rem;
  width: 70%;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}

.social-icon {
  font-size: 2rem;
  color: var(--clr-grey-1);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.social-icon:hover {
  /* font-size: 1.75rem; */
  color: var(--clr-primary-5);
}

.close-btn {
  font-size: 3rem;
  color: #bb2525;
  background: transparent;
  border: transparent;
  position: absolute;
  top: 1rem;
  right: 1rem;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.close-btn:hover {
  color: #e66b6b;
  cursor: pointer;
}

/*
=============== 
Hero
===============
*/
.hero .underline {
  margin-bottom: 1rem;
  margin-top: 0;
  margin-left: 12%;
  width: 45%;
}

.hero-img {
  display: none;
}

.hero {
  background: var(--clr-primary-10);
}

.hero-center {
  min-height: calc(100vh - 5rem);
  display: grid;
  place-items: center;
}

.hero-info h4 {
  color: var(--clr-grey-5);
}

.hero-icons {
  justify-items: start;
}

.hero-btn {
  margin-top: 1rem;
}

.hero-photo {
  max-width: 25rem;
  max-height: 30rem;
  border-radius: var(--radius);
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

@media screen and (min-width:992px) {
  .hero-img {
    display: block;
    position: relative;
  }

  .hero-center {
    grid-template-columns: 1fr 1fr;
  }

  .hero-img::before,
  .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0.25rem solid var(--clr-primary-5);
    border-radius: var(--radius);
    top: 2rem;
    left: 2rem;
  }
}

/*
=============== 
About
===============
*/
.about-title {
  text-align: left;
  margin-bottom: 2rem;
}

.about-title .underline {
  margin-left: 4%;
}

.about-center {
  display: grid;
  gap: 3rem 2rem;
}

.about-img {
  justify-self: center;
}

.about-img .hero-photo {
  min-width: 240px;
  min-height: 360px;
}

.about-info a {
  margin-top: 0.5rem;
}

@media screen and (min-width:992px) {
  .about-center {
    grid-template-columns: 1fr 1fr;
  }

  .about-img {
    position: relative;
  }

  .about-img::before {
    left: -2rem;
  }

  .about-info {
    -ms-flex-item-align: center;
    align-self: center;
  }
}

/*
=============== 
Services
===============
*/
/* small screen layout setup */
/* bg-grey in globals */

.service {
  background: white;
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service .underline {
  width: 3rem;
  height: 0.12rem;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition)
}

.service p {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.service:hover {
  background: var(--clr-primary-5);
  color: white;
}

.service:hover p {
  color: white;
}

.service:hover .underline {
  background: white;
}

@media screen and (min-width:676px) {
  .services-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

@media screen and (min-width:992px) {
  .services-center {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

@media screen and (min-width:676px) {
  .blog-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

@media screen and (min-width:992px) {
  .blog-center {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

/*
=============== 
Projects
===============
*/
.projects-text {
  width: 95vw;
  max-width: 50rem;
  margin: 0 auto;
}

.project {
  position: relative;
  border-radius: var(--radius);
  background: var(--clr-primary-5);
  margin-bottom: 2rem;
}

.project-info {
  text-align: center;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}

.project-info p {
  text-transform: capitalize;
  color: white;
}

.project:hover .project-info {
  opacity: 1;
}

.project:hover .project-img {
  opacity: 0.1;
}

.project-img {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  border-radius: var(--radius);
  height: 20rem;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.project::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.25rem solid white;
  border-radius: var(--radius);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}

.project:hover::after {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 1;
}

@media screen and (min-width:992px) {
  .projects-center {
    display: grid;
    grid-template-rows: 200px 200px;
    grid-template-areas:
      "a b b"
      "a c d";
    gap: 1rem;
  }

  .project-img {
    height: 100%;
  }

  .project {
    height: 100%;
  }

  .project-1 {
    grid-area: c;
  }

  .project-2 {
    grid-area: a;
  }

  .project-4 {
    grid-area: b;
  }

  .project-3 {
    grid-area: d;
  }
}

/*
=============== 
Connect
===============
*/
.connect {
  min-height: 40vh;
  position: relative;
  padding: 10rem 0 5rem 0;
  margin: 5rem 0;
  display: grid;
  place-items: center;
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 10%, 100% 90%, 70% 100%, 30% 100%, 0 90%, 0 10%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 10%, 100% 90%, 70% 100%, 30% 100%, 0 90%, 0 10%);

}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -3;
}

.connect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -2;
}

.connect {
  display: grid;
  place-items: center;
}

.video-text {
  max-width: 30rem;
}

.video-banner {
  background: var(--clr-primary-10);
  z-index: -1;
  padding: 3rem 5rem 12rem 5rem;
  text-align: center;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

.video-banner .section-title {
  margin-bottom: 2rem;
}



/*
=============== 
Skills
===============
*/
.skills {
  background: var(--clr-primary-9);
}

.skills h3 {
  margin: 1.5rem 0;
  color: var(--clr-primary-1);
}

.skill {
  margin-bottom: 1.25rem;
}

.skill p {
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  color: var(--clr-primary-1);
}

.skill-container {
  background: white;
  height: 1rem;
  width: 100%;
  border-radius: var(--radius);
  position: relative;
}

.skill-text {
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.skill-value {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--clr-primary-5);
  height: 100%;
  border-radius: var(--radius);
  /* z-index:-1; */
}

.value-10 {
  width: 10%;
}

.value-20 {
  width: 20%;
}

.value-30 {
  width: 30%;
}

.value-40 {
  width: 40%;
}

.value-50 {
  width: 50%;
}

.value-60 {
  width: 60%;
}

.value-70 {
  width: 70%;
}

.value-80 {
  width: 80%;
}

.value-90 {
  width: 90%;
}


.skill-text-10 {
  left: 10%;
}

.skill-text-20 {
  left: 20%;
}

.skill-text-30 {
  left: 30%;
}

.skill-text-40 {
  left: 40%;
}

.skill-text-50 {
  left: 50%;
}

.skill-text-60 {
  left: 60%;
}

.skill-text-70 {
  left: 70%;
}

.skill-text-80 {
  left: 80%;
}

.skill-text-90 {
  left: 80%;
}

@media screen and (min-width:768px) {
  .skills-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

/*
=============== 
Timeline
===============
*/
.timeline-center {
  width: 80vw;
  max-width: 40rem;
}

.timeline-item {
  border-top: 2px dashed var(--clr-primary-5);
  margin: 0;

  padding: 4rem 2rem;
  position: relative;
}

.timeline p {
  margin-bottom: 0;
}

.timeline-item:nth-child(even) {
  border-left: 2px dashed var(--clr-primary-5);
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;

  margin-right: 2rem;
  padding-right: 0;
}

.timeline-item:nth-child(odd) {
  border-right: 2px dashed var(--clr-primary-5);
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;

  margin-left: 2rem;
  padding-left: 0;
}

.timeline-item:first-child {
  border-top: 0;
  border-top-right-radius: 0;
}

.timeline-item:last-child {
  border-bottom-left-radius: 0;
}

.number {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--clr-primary-5);
  display: grid;
  place-items: center;
  margin-bottom: 0;
  font-weight: bold;
  color: var(--clr-primary-1);
}

.timeline-item:nth-child(even) .number {
  left: 0;
}

.timeline-item:nth-child(odd) .number {
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%)
}

/*
=============== 
Blog
===============
*/

.blog {
  background: var(--clr-grey-10);
}

.card {
  height: 27rem;
  position: relative;
  -webkit-perspective: 1500px;
  perspective: 1500px;
  margin: 1rem;
}

.card-side {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 2s linear;
  -o-transition: all 2s linear;
  transition: all 2s linear;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--radius);
  --webkit-transform: translate3d(0, 0, 0);
  visibility: visible;
}


.card-back {
  background: var(--clr-primary-10);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  display: grid;
  place-items: center;
}

.card:hover .card-back {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}

.card-front {
  background: white;
}

.card:hover .card-front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.card-front img {
  height: 13rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.card-info {
  height: 45%;
  padding: 0rem 1rem 0 0;
  /* margin-bottom: 1rem; */
}
.card-info p{
  margin-top: 1rem;
}

.card-footer {
  height: 30%;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2rem;
}

.card-footer p {
  margin-bottom: 0;
  justify-self: end;
  text-transform: uppercase;
  color: var(--clr-primary-5);
  font-size: 0.85rem;
}

.card-footer img {
  width: 3rem;
  height: 3rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.card-info {
  padding: 1.5rem 1.5rem;
  /* margin-bottom: 3rem; */
}

.card-info h4 {
  height: 10%;
}

.card-info p {
  height: 50%;
  margin-bottom: 0;
  font-size: 1.1rem;
}

@media screen and (max-width:460px) {
  .card-info p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width:350px) {
  .card-info p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width:280px) {
  .card-info p {
    font-size: 0.7rem;
  }
}

.blog-center {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 3rem 1rem;
}


/*
=============== 
Footer
===============
*/
footer {
  background: var(--clr-grey-1);
  padding-bottom: 2rem;
  display: grid;
  place-items: center;
}

footer .social-icons {
  margin-bottom: 2rem;
}

footer .social-icon {
  color: var(--clr-primary-5);
}

footer .social-icon:hover {
  color: var(--clr-primary-10);
}

footer p {
  font-size: 1.5rem;
  text-transform: capitalize;
}

@media screen and (max-width:700px) {
  footer p {
    font-size: 1.25rem;
  }
}

@media screen and (max-width:450px) {
  footer p {
    font-size: 1rem;
  }
}




/*
=============== 
Single Page
===============
*/

.single-page {
  background: var(--clr-primary-10);
  min-height: calc(100vh - 5rem - 198px);
}
.page-info a {
  text-transform: uppercase;
  color: var(--clr-primary-5);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition)
}

.page-info a:hover {
  color: var(--clr-primary-1);
  /* transition:var(--transition) */
}

/*
=============== 
Projects Page
===============
*/
.projects-hero {
  height: 20vh;
  background: var(--clr-primary-10);
  display: grid;
  place-items: center;
}

.projects-hero .section-title {
  margin-bottom: 0;
}

.single-project {
  background: var(--clr-grey-10);
  border-radius: var(--radius);
}

.project-container img {
  object-fit: cover;
  /* width: 21rem; */
  /* height: 13rem; */
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.project-container {
  position: relative;
}

.project-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  background: var(--clr-primary-5);
  border-radius: 50%;
  color: var(--clr-primary-1);
  border: solid 6px var(--clr-grey-10);
}

.project-details {
  padding: 1.5rem 1.5rem;
}

.project-details h4 {
  margin-top: 1rem;
}

.all-projects {
  margin-top: 2rem;
}

.project-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--clr-primary-3);
  font-size: 2rem;
}

.project-footer a {
  text-transform: capitalize;
  color: var(--clr-primary-3);
  justify-self: end;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  font-size: 1.5rem;
}

@media screen and (max-width:568px) {
  .project-footer a {
    font-size: 1.20rem;
  }
}



.project-footer a:hover {
  color: var(--clr-grey-3);
}

.projects-page-center {
  display: grid;
  gap: 3rem 1rem;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
}