* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  padding: 1rem;
  margin: auto;
}

.colored {
  color: #47C7F0;
}

.btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid #000;
  border-radius: 10px;
  display: inline-block;
  margin: 15px auto;
}

.card {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 10px 18px rgba(0, 0, 0, 0.15), 0 30px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 10px 18px rgba(0, 0, 0, 0.15), 0 30px 50px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 1rem;
  margin: 0.5rem;
}

.gentle-bounce {
  animation: gentleBounce ease 3s;
  animation-delay: 2s;
  -webkit-animation: gentleBounce ease 3s;
  -webkit-animation-delay: 2s;
  -moz-animation: gentleBounce ease 3s;
  -moz-animation-delay: 2s;
  -o-animation: gentleBounce ease 3s;
  -o-animation-delay: 2s;
  -ms-animation: gentleBounce ease 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@keyframes gentleBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes gentleBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

header {
  z-index: 10;
  position: fixed;
  width: 100%;
  background-color: #1f1f1f;
  color: #fff;
  height: 60px;
  border-bottom: 1px solid #47C7F0;
}

header .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .container label, header .container #toggle {
  display: none;
}

header .container .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .container .nav-menu li a {
  padding: 1rem;
}

header .container .nav-menu li a:hover {
  color: #47C7F0;
}

main {
  height: 100vh;
  background-color: #1f1f1f;
  color: #fff;
}

main .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main .col {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 95%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .col h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

main .col p {
  font-size: 1.5rem;
}

main .col img {
  width: 100%;
}

main .scroll {
  width: 100%;
  justify-self: flex-end;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 5px;
}

main .scroll a img {
  height: 20px;
}

section#about {
  padding-top: 65px;
  padding-bottom: 50px;
}

section#about .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

section#about .container .col.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

section#about .container .col.card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

section#about .container .col.card p {
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 1rem;
}

section#about .container .col.card .social-links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

section#about .container .col.card .social-links li a {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 2px solid #000;
  padding: 0.75rem;
  margin: 0.5rem;
  border-radius: 50%;
  -webkit-transition: -webkit-filter 350ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: -webkit-filter 350ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: filter 350ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: filter 350ms cubic-bezier(0.2, 1, 0.3, 1), -webkit-filter 350ms cubic-bezier(0.2, 1, 0.3, 1);
}

section#about .container .col.card .social-links li a:hover {
  -webkit-filter: invert(67%) sepia(80%) saturate(726%) hue-rotate(162deg) brightness(98%) contrast(92%);
          filter: invert(67%) sepia(80%) saturate(726%) hue-rotate(162deg) brightness(98%) contrast(92%);
}

section#about .container .col.card .social-links li a img {
  display: block;
  height: 100%;
  width: 100%;
}

section#about .container .profile-pic {
  background: url(../svg/fran-standing.svg) no-repeat bottom center/cover;
  height: 100%;
}

section#work {
  padding-top: 65px;
  padding-bottom: 50px;
}

section#work .container {
  min-height: 50vh;
  text-align: center;
}

section#work .container h2 {
  width: 50%;
  font-size: 3rem;
  margin-bottom: 2rem;
}

section#work .container .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  gap: 20px;
}

section#work .container .grid .item {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 10px 18px rgba(0, 0, 0, 0.15), 0 30px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 10px 18px rgba(0, 0, 0, 0.15), 0 30px 50px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

section#work .container .grid .item-img {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: -webkit-transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 750ms cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
  z-index: 0;
}

section#work .container .grid .item:hover .item-img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

section#work .container .grid .item::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1f1f1f;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 750ms cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: opacity 750ms cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 750ms cubic-bezier(0.2, 1, 0.3, 1), opacity 750ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 750ms cubic-bezier(0.2, 1, 0.3, 1), opacity 750ms cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
}

section#work .container .grid .item:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0.8;
}

section#work .container .grid .item-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  z-index: 1;
  line-height: 1.5;
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}

section#work .container .grid .item-text h3 {
  font-size: 1.5rem;
  padding: 1rem;
}

section#work .container .grid .item-text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

section#work .container .grid .item-text ul a {
  padding: 1rem;
  margin-top: 1rem;
  display: block;
}

section#work .container .grid .item-text ul a img {
  height: 30px;
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(198deg) brightness(103%) contrast(104%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(198deg) brightness(103%) contrast(104%);
}

section#work .container .grid .item-text ul a:hover {
  -webkit-filter: invert(67%) sepia(80%) saturate(726%) hue-rotate(162deg) brightness(98%) contrast(92%);
          filter: invert(67%) sepia(80%) saturate(726%) hue-rotate(162deg) brightness(98%) contrast(92%);
}

section#work .container .grid .item:hover .item-text {
  opacity: 1;
}

footer {
  background-color: #1f1f1f;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  border-top: 1px solid #47C7F0;
}

@media (max-width: 600px) {
  header {
    height: auto;
  }
  header .container {
    padding: 0 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header .container label {
    display: block;
    font-size: 2rem;
    cursor: pointer;
  }
  header .container .nav-menu {
    display: none;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #1f1f1f;
    text-align: center;
  }
  header .container .nav-menu li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  header .container .nav-menu li a {
    display: block;
    padding: 0.5rem 0.75rem;
  }
  header .container .nav-menu li:last-child {
    border: none;
  }
  header .container #toggle:checked + .nav-menu {
    display: block;
  }
  main .container .col {
    width: 100%;
    background: url(../img/laptop_main.png) no-repeat center center/contain;
  }
  main .container .col:nth-child(2) {
    display: none;
  }
  main .container .col h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  main .container .col p {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
  section#about .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  section#about .container .profile-pic {
    display: none;
  }
  section#about .container .col.card .social-links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  section#work .container h2 {
    width: 100%;
    font-size: 2.5rem;
  }
  section#work .container .grid {
    display: block;
  }
  section#work .container .grid .item {
    margin-bottom: 20px;
  }
}

@media (max-width: 800px) {
  section#work .container .grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}
/*# sourceMappingURL=main.css.map */