@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins:wght@300;400;500&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #626262;
}

h1 {
  font-size: 50px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  letter-spacing: 3px;
}

h2 {
  font-size: 36px;
  text-align: center;
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: 2px;
}

h3 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
}

.home {
  height: 100vh;
  background: -webkit-gradient(linear, left top, right bottom, from(#006494), to(#0582CA));
  background: linear-gradient(to bottom right, #006494, #0582CA);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.home nav {
  position: absolute;
  width: 100%;
  height: 120px;
  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;
  z-index: 5;
  max-width: 1440px;
  padding: 0 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.home nav .brand svg {
  -webkit-transform: translate(calc(720px - 50px - 50%), calc(50vh - 60px - 50%)) scale(2);
          transform: translate(calc(720px - 50px - 50%), calc(50vh - 60px - 50%)) scale(2);
  opacity: 1;
  height: 80px;
  width: auto;
}

.home nav .brand svg #cog {
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
  -webkit-transform: translate(123px, 38px) rotate(60deg) scale(0);
          transform: translate(123px, 38px) rotate(60deg) scale(0);
}

.home nav .brand svg #name {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%, 100% 85%, 100% 65%, 100% 35%, 100% 15%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%, 100% 85%, 100% 65%, 100% 35%, 100% 15%);
}

.home nav .brand svg #code {
  -webkit-clip-path: circle(75% at 200% 50%);
          clip-path: circle(75% at 200% 50%);
}

.home nav .links {
  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;
  width: 437px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.home nav .links a {
  font-size: 28px;
  text-transform: uppercase;
  color: #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home nav .links a:hover {
  color: #fff;
}

.home nav .links i {
  font-size: 42px;
}

.home .hero {
  width: 1200px;
  height: 80vh;
  position: relative;
  margin: 15vh auto;
}

.home .hero .hero-svg, .home .hero .hexagons {
  position: absolute;
}

.home .hero .hero-text {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 69px;
  width: 886px;
  top: 50px;
  left: 279px;
  color: #fff;
  z-index: 6;
}

.home .hero .hero-text * {
  opacity: 0;
}

.home .hero .hero-text .text1 {
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
}

.home .hero .hero-text .text2 {
  margin-top: 27px;
  text-align: center;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.home .hero .hero-text .text3 {
  text-align: right;
  margin-top: 27px;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
}

.home .hero .hero-text .cta {
  position: absolute;
  right: 100px;
  bottom: -110px;
  border-radius: 10px;
  background-color: #00A6FB;
  padding: 15px 28px;
  font-size: 22px;
  color: #fff;
  z-index: 2;
}

.home .hero .hero-svg {
  top: 200px;
  left: -82px;
  z-index: 5;
}

.home .hero .hero-svg img {
  height: 600px;
  opacity: 1;
}

.home .hero .hexagons {
  z-index: 1;
  width: 2200px;
  top: 315px;
  left: 400px;
  opacity: 0.1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.portfolio {
  margin: auto;
  max-width: 1200px;
  padding: 40px 20px;
}

.portfolio h1 {
  color: #7a7a7a;
  margin-bottom: 30px;
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.portfolio .wrapper {
  opacity: 0;
}

.portfolio .wrapper .project {
  background-color: #eee;
  padding: 10px 40px 0 40px;
  max-width: 934px;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 5%;
          column-gap: 5%;
      grid-template-areas: "title image" "description image" "buttons image" "notice image";
  -ms-grid-columns: 50% 45%;
      grid-template-columns: 50% 45%;
  -ms-grid-rows: 30% 45% 15% 10%;
      grid-template-rows: 30% 45% 15% 10%;
  border-radius: 30px;
  margin-bottom: 70px;
  position: relative;
  margin-left: auto;
}

.portfolio .wrapper .project h2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: title;
}

.portfolio .wrapper .project .image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 1;
  grid-area: image;
  text-align: center;
  width: 100%;
}

.portfolio .wrapper .project .image img {
  width: 100%;
}

.portfolio .wrapper .project .description {
  font-size: 19px;
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: description;
}

.portfolio .wrapper .project .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 340px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: buttons;
}

.portfolio .wrapper .project .live-preview {
  background-color: #00A6FB;
  width: 196px;
  text-align: center;
  font-size: 19px;
  letter-spacing: 1px;
  padding: 6px 0;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
}

.portfolio .wrapper .project .live-preview:hover {
  background-color: #0582CA;
}

.portfolio .wrapper .project .buttons i {
  font-size: 32px;
}

.portfolio .wrapper .project .fa-github {
  color: #555;
}

.portfolio .wrapper .project .fa-github:hover {
  color: #777;
}

.portfolio .wrapper .project .fa-youtube {
  color: #f31e1e;
}

.portfolio .wrapper .project .fa-youtube:hover {
  color: #ff4949;
}

.portfolio .wrapper .project .notice {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
  grid-area: notice;
  color: #c36b18;
  font-size: 14px;
}

.portfolio .wrapper .project .footer {
  position: absolute;
  bottom: -34px;
  background-color: #0582CA;
  color: #eee;
  width: 100%;
  height: 100px;
  text-align: center;
  font-size: 18px;
  padding-top: 70px;
  z-index: -1;
  border-radius: 30px;
}

.portfolio .wrapper:nth-child(even) .project {
  margin-left: 0;
  -ms-grid-columns: 45% 50%;
      grid-template-columns: 45% 50%;
      grid-template-areas: "image title" "image description" "image buttons" "image notice";
}

.portfolio .first, .portfolio .third {
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
}

.portfolio .second {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.about {
  background: -webkit-gradient(linear, left top, right bottom, from(#003554), to(#006494));
  background: linear-gradient(to bottom right, #003554, #006494);
  color: #fff;
  padding-top: 1px;
}

.about h1 {
  margin-bottom: 20px;
}

.about .about-me, .about .contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 160px;
}

.about .about-me {
  padding-bottom: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  opacity: 0;
}

.about .about-me .text {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 40px;
}

.about .contact {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  opacity: 0;
}

.about .contact form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about .contact form .input-group {
  position: relative;
}

.about .contact form input, .about .contact form textarea {
  height: 50px;
  background-color: #003554;
  border: none;
  margin-bottom: 24px;
  border-radius: 10px;
  padding: 20px 0 5px 30px;
  font-size: 20px;
  color: #fff;
  font-family: 'Poppins';
  border-radius: 10px;
  width: 100%;
}

.about .contact form input:focus, .about .contact form textarea:focus {
  outline: none;
}

.about .contact form input:focus ~ label, .about .contact form input:valid ~ label, .about .contact form textarea:focus ~ label, .about .contact form textarea:valid ~ label {
  color: #00A6FB;
  font-size: 18px;
  top: -10px;
  left: 0px;
  font-weight: 500;
  padding: 0 20px;
}

.about .contact form label {
  position: absolute;
  top: 10px;
  left: 30px;
  color: #fff6;
  font-size: 22px;
  font-weight: 500;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  background-color: #003554;
  border-radius: 10px;
  pointer-events: none;
}

.about .contact form .name-group {
  max-width: 50%;
}

.about .contact form .email-group {
  max-width: 60%;
}

.about .contact form .subject-group {
  max-width: 70%;
}

.about .contact form .message {
  height: 246px;
  padding: 20px 30px;
  resize: none;
}

.about .contact form button {
  background-color: #00A6FB;
  border-radius: 10px;
  height: 40px;
  width: 120px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  border: none;
  cursor: pointer;
}

.about .contact form button:hover {
  background-color: #0582CA;
}

.footer {
  background-color: #051923;
  color: #ddd;
  padding: 20px 0 10px 0;
}

.footer .links {
  width: 433px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  color: #bbb;
  font-size: 20px;
  margin: 5px 0;
}

.footer .links a .icon {
  width: 40px;
  text-align: center;
}

.footer .links a:hover {
  color: #fff;
}

.scroll-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1;
  background-color: #00A6FB;
  padding: 10px;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  opacity: .8;
}

.scroll-top i {
  color: #fff;
  font-size: 50px;
}

.successMsg, .errorMsg {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 10;
  font-size: 19px;
  width: 400px;
  padding: 40px;
  background-color: #eee;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}

.successMsg .icon, .errorMsg .icon {
  color: #69bb2a;
  font-size: 100px;
  text-align: center;
  width: 100%;
}

.successMsg .title, .errorMsg .title {
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0 20px;
}

.successMsg .button, .errorMsg .button {
  width: 200px;
  background-color: #69bb2a;
  color: #fff;
  margin: 15px auto 0;
  padding: 5px;
  text-align: center;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.errorMsg .icon {
  color: #bb2a2a;
}

.errorMsg .button {
  background-color: #bb2a2a;
}

.errorMsg a {
  color: #006494;
  font-weight: 600;
}

/* Extra Large devices (Large Laptops up to 1440px) */
@media only screen and (max-width: 1440px) {
  .home {
    width: 100%;
  }
  .home nav {
    width: 100%;
    padding: 0 30px;
  }
  .home nav .brand svg {
    -webkit-transform: translate(calc(50vw - 30px - 50%), calc(50vh - 60px - 50%)) scale(2);
            transform: translate(calc(50vw - 30px - 50%), calc(50vh - 60px - 50%)) scale(2);
  }
  .home .hero {
    margin-top: 10vh;
    width: 1024px;
  }
  .home .hero .hero-text {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home .hero .hero-svg {
    top: 250px;
    left: -150px;
  }
  .home .hero .hexagons {
    top: 300px;
    left: 200px;
  }
}

/* Large devices (Laptops up to 1024px) */
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  .home nav .links {
    width: 400px;
  }
  .home .hero {
    width: 100%;
  }
  .home .hero .hero-text {
    width: 80%;
    font-size: 58px;
  }
  .home .hero .hero-svg {
    top: 250px;
    left: -70px;
  }
  .home .hero .hero-svg img {
    height: 500px;
  }
  .home .hero .hexagons {
    top: 350px;
    width: 1700px;
  }
  .portfolio .wrapper .project {
    max-width: 663px;
    padding: 8px 20px 0 20px;
  }
  .portfolio .wrapper .project .description {
    font-size: 14px;
  }
  .portfolio .wrapper .project .buttons {
    max-width: 280px;
  }
  .portfolio .wrapper .project .buttons .live-preview {
    width: 145px;
    font-size: 14px;
  }
  .portfolio .wrapper .project .buttons i {
    font-size: 28px;
  }
  .portfolio .wrapper .project .notice {
    font-size: 12px;
  }
  .portfolio .wrapper .project .footer {
    font-size: 14px;
    bottom: -25px;
    padding-top: 77px;
  }
  .about .about-me, .about .contact {
    padding: 40px 30px;
    max-width: 800px;
  }
  .about .contact {
    padding-top: 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .home .hero .hero-text .cta {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    font-size: 30px;
    padding: 12px 30px;
    bottom: -10vh;
  }
  .home .hero .hero-svg {
    position: absolute;
    top: 30vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home .hero .hero-svg img {
    height: 770px;
  }
  .home .hero .hexagons {
    width: 2800px;
  }
}

/* Medium devices (Tablets up to 768px) */
@media only screen and (max-width: 768px) {
  .home nav {
    height: 80px;
    padding: 0 20px;
  }
  .home nav .brand {
    padding: 0px;
    height: 50px;
  }
  .home nav .brand svg {
    height: 50px;
    -webkit-transform: translate(calc(50vw - 20px - 50%), calc(50vh - 60px - 50%)) scale(2);
            transform: translate(calc(50vw - 20px - 50%), calc(50vh - 60px - 50%)) scale(2);
  }
  .home nav .links {
    width: 210px;
  }
  .home nav .links .desktop-link {
    font-size: 16px;
  }
  .home nav .links i {
    font-size: 30px;
    height: 32px;
  }
  .home .hero {
    height: 95vh;
    margin-top: 5vh;
  }
  .home .hero .hero-text {
    font-size: 44px;
    max-width: 600px;
  }
  .home .hero .hero-text .cta {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    font-size: 18px;
    padding: 8px 20px;
    bottom: -10vh;
  }
  .home .hero .hero-svg {
    position: absolute;
    top: 35vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home .hero .hero-svg img {
    height: 570px;
  }
  .home .hero .hexagons {
    left: 60px;
    top: 400px;
  }
  .home .hero .hexagons img {
    width: 1800px;
  }
  .portfolio {
    max-width: 100%;
  }
  .portfolio .wrapper .project .image {
    place-self: center;
  }
  .portfolio .wrapper .project .notice {
    margin-top: 2px;
    font-size: 11px;
  }
  .about .about-me, .about .contact {
    max-width: 600px;
  }
  .about .about-me .text {
    font-size: 16px;
    line-height: 30px;
  }
  .about .contact {
    padding-top: 0;
  }
  .about .contact form input, .about .contact form textarea {
    height: 40px;
    font-size: 16px;
    padding: 15px 0 5px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .about .contact form input:focus ~ label, .about .contact form input:valid ~ label, .about .contact form textarea:focus ~ label, .about .contact form textarea:valid ~ label {
    font-size: 14px;
    top: -8px;
    left: 0px;
    font-weight: 500;
    padding: 0 10px;
  }
  .about .contact form label {
    top: 14px;
    left: 15px;
    font-size: 16px;
    border-radius: 10px;
  }
  .about .contact form .message {
    padding: 15px 0 5px 15px;
    height: 150px;
  }
  .about .contact form button {
    height: 30px;
    width: 90px;
    font-size: 14px;
  }
  .footer {
    padding: 10px 0;
  }
  .footer .links {
    width: 310px;
  }
  .footer .links a {
    font-size: 14px;
    margin: 2px 0;
  }
  .scroll-top {
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
  }
  .scroll-top i {
    font-size: 30px;
  }
}

@media only screen and (max-width: 560px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  .home .hero .hero-text {
    width: 90%;
    font-size: 36px;
  }
  .home .hero .hero-svg img {
    height: 500px;
  }
  .portfolio {
    padding: 30px 40px;
  }
  .portfolio .wrapper .project {
        grid-template-areas: "image" "title" "description" "buttons" "notice" !important;
    -ms-grid-columns: 100% !important;
        grid-template-columns: 100% !important;
    -ms-grid-rows: 2fr 1fr 2fr 1fr !important;
        grid-template-rows: 2fr 1fr 2fr 1fr !important;
    width: 100%;
    max-width: 320px;
    padding: 8px 15px;
    height: 420px;
    border-radius: 15px;
  }
  .portfolio .wrapper .project h2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: title;
    margin-top: 0;
  }
  .portfolio .wrapper .project .image {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: image;
  }
  .portfolio .wrapper .project .image img {
    width: 100%;
  }
  .portfolio .wrapper .project .description {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: description;
  }
  .portfolio .wrapper .project .buttons {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: buttons;
    width: 250px;
  }
  .portfolio .wrapper .project .notice {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: notice;
    font-size: 11px;
  }
  .portfolio .wrapper .project .footer {
    font-size: 9px;
    border-radius: 15px;
    bottom: -18px;
    padding-top: 84px;
  }
  .about .contact form .name-group {
    max-width: 250px;
  }
  .about .contact form .email-group {
    max-width: 300px;
  }
  .about .contact form .subject-group {
    max-width: 350px;
  }
  .scroll-top {
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
  }
  .scroll-top i {
    font-size: 20px;
  }
}

/* Small devices (Phones up to 425px) */
@media only screen and (max-width: 425px) {
  .home nav .links {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
  .home nav .links .desktop-link {
    display: none;
  }
  .home .hero .hero-text {
    font-size: 30px;
  }
  .home .hero .cta {
    width: 200px;
    text-align: center;
  }
  .home .hero .hero-svg {
    top: 38vh;
  }
  .home .hero .hero-svg img {
    height: 400px;
  }
  .home .hero .hexagons {
    left: 0px;
    top: 290px;
  }
  .home .hero .hexagons img {
    width: 1500px;
  }
  .portfolio {
    padding: 20px 10px;
  }
  .about .about-me .text {
    font-size: 14px;
    line-height: 28px;
  }
  .about .contact form input, .about .contact form textarea {
    height: 36px;
    font-size: 14px;
  }
  .about .contact form input:focus ~ label, .about .contact form input:valid ~ label, .about .contact form textarea:focus ~ label, .about .contact form textarea:valid ~ label {
    font-size: 12px;
    top: -6px;
  }
  .about .contact form label {
    font-size: 14px;
  }
  .about .contact form .name-group {
    max-width: 220px;
  }
  .about .contact form .email-group {
    max-width: 260px;
  }
  .about .contact form .subject-group {
    max-width: 300px;
  }
  .about .contact form .message {
    height: 200px;
  }
  .successMsg, .errorMsg {
    width: 320px;
    font-size: 14px;
    padding: 30px;
  }
  .successMsg .icon, .errorMsg .icon {
    font-size: 60px;
  }
  .successMsg .title, .errorMsg .title {
    font-size: 18px;
  }
  .successMsg .button, .errorMsg .button {
    font-size: 14px;
    width: 160px;
  }
}

@media only screen and (max-width: 340px) {
  .home nav {
    height: 50px;
  }
  .home nav .brand {
    height: 30px;
  }
  .home nav .brand svg {
    height: 30px;
    width: auto;
  }
  .home nav .links {
    height: 30px;
  }
  .home nav .links .fa-github {
    height: 24px;
    font-size: 24px;
  }
  .home .hero .hero-text {
    font-size: 24px;
    top: 30px;
  }
  .home .hero .hero-text .text2, .home .hero .hero-text .text3 {
    margin-top: 14px;
  }
  .home .hero .hero-text .cta {
    width: 120px;
    font-size: 12px;
    padding: 5px 10px;
  }
  .home .hero .hero-svg img {
    height: 300px;
  }
  .home .hero .hexagons {
    top: 150px;
    left: 0;
  }
  .home .hero .hexagons img {
    width: 1000px;
  }
  .portfolio .project {
    -ms-grid-rows: 1fr 36px 1fr 24px !important;
        grid-template-rows: 1fr 36px 1fr 24px !important;
    max-width: 270px;
    height: 360px;
  }
  .portfolio .project .description {
    font-size: 12px;
  }
  .portfolio .project .buttons {
    max-width: 230px;
  }
  .portfolio .project .buttons a {
    padding-top: 3px;
  }
  .portfolio .project .buttons .live-preview {
    font-size: 12px;
    width: 120px;
    padding: 3px;
    border-radius: 5px;
  }
  .portfolio .project .buttons i {
    font-size: 24px;
  }
  .about .about-me .text {
    font-size: 12px;
    line-height: 24px;
  }
}
