/*####################### for old web browsers #######################*/
article, aside, details, dialog, figcaption, figure, footer, header, hgroup, nav,
section {
display: block;
}
audio, canvas, embed, keygen, meter, progress, video {
display: inline-block;
}
[hidden] {
display: none;
}
/*####################################################################*/

@font-face {
    font-family: 'Varela';
  src: url('fonts/Varela-Regular.ttf') format('opentype');
  font-weight: 400;
}

@font-face {
    font-family: 'Raleway';
  src: url('fonts/Raleway-Thin.ttf') format('opentype');
  font-weight: 100;
}
@font-face {
    font-family: 'Raleway';
  src: url('fonts/Raleway-ExtraLight.ttf') format('opentype');
  font-weight: 200;
}
@font-face {
    font-family: 'Raleway';
  src: url('fonts/Raleway-Light.ttf') format('opentype');
  font-weight: 300;
}
@font-face {
    font-family: 'Raleway';
  src: url('fonts/Raleway-Regular.ttf') format('opentype');
  font-weight: 400;
}
@font-face {
    font-family: 'Raleway';
  src: url('fonts/Raleway-Medium.ttf') format('opentype');
  font-weight: 500;
}
@font-face {
    font-family: 'Raleway';
  src: url('fonts/Raleway-SemiBold.ttf') format('opentype');
  font-weight: 600;
}
@font-face {
    font-family: 'Raleway';
  src: url('fonts/Raleway-Bold.ttf') format('opentype');
  font-weight: 700;
}
@font-face {
    font-family: 'Raleway';
  src: url('fonts/Raleway-ExtraBold.ttf') format('opentype');
  font-weight: 800;
}
@font-face {
    font-family: 'Raleway';
  src: url('fonts/Raleway-Black.ttf') format('opentype');
  font-weight: 900;
}

/*a simple CSS trick to achieve Photoshop-like font quality*/
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

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

body {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: white;
  background: gray;
  font-family: 'Raleway';
  background-color: white;
}

h1 {
  font-size: 48px;
  font-weight: 400;
}

.navgrid {
  display: grid;
  align-items: center;
  height: 636px;
  grid-template-columns: 1fr 30px repeat(3, minmax(50px, 350px)) 30px 1fr;
  grid-template-rows: 121px 515px;
  background: linear-gradient(90deg, rgba(35, 7, 77, 0.85) 0%, rgba(204, 83, 51, 0.87) 100%), url(images/background.png) center center no-repeat fixed;
  background-size: auto, cover;
}

.logo {
  font-family: 'Varela';
  font-size: 36px;
  text-transform: uppercase;
  grid-column: 3/5;
  grid-row: 1/2;
  vertical-align: middle;
  width: 340px;
}

.sygnet {
  display: inline-block;
  vertical-align: middle;
}

.logotype {
  display: inline-block;
}

.logo:hover {
  opacity: 0.8;
}

.robert {
  padding-left: 5px;
}

.pelka {
  color: #CC5333;
}

.menu {
  font-size: 26px;
  font-weight: 300;
  grid-column: -3/-5;
  grid-row: 1/2;
  justify-self: right;
}

.menu a:hover {
  opacity: 0.7;
}

#hamburger {
  display: none;
}

.menu li {
  display: inline;
  list-style-type: none;
  padding-left: 54px;
}

@keyframes slideAnimation {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.welcomeText {
  font-size: 48px; 
  font-weight: 400;
  margin-top: 0;
  padding-bottom: 5px;
  animation: slideAnimation 1 forwards 1.5s ease;
}

.welcomeBox {
  grid-column: 3/5;
  grid-row: 2/3;
  padding-bottom: 50px;
}

.meIndex {
  grid-column: 4/6;
  grid-row: 2/3;
  align-self: end;
  justify-self: right;
}

.button {
  display: inline-block;
  width: 180px;
  font-size: 20px;
  font-weight: 400;
  padding: 13px 0;
  background-color: #CC5333;
  text-align: center;
  border-radius: 100px;
  transition: 0.3s;
}

.button:hover {
  background-color: #FFFFFF;
  color: #CC5333;
  transition: 0.3s;
  transform: scale(1.05);
}

.ghostButton {
  display: inline-block;
  width: 174px;
  font-size: 20px;
  font-weight: 400;
  padding: 10px 0;
  border: 3px solid #CC5333;
  text-align: center;
  border-radius: 100px;
  margin-left: 20px;
  transition: 0.3s;
}

.ghostButton:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #CC5333;
  transition: 0.3s;
  transform: scale(1.05);
}

.content {
  height: 394px;
  display: grid;
  justify-items: center;
  align-items: end;
  grid-template-columns: 1fr 30px repeat(3, minmax(50px, 350px)) 30px 1fr;
  grid-template-rows: 1fr auto 1fr;
  font-weight: 300;
  font-size: 24px;
  color: black
}

.pic1 {
  grid-column: 3/4;
  grid-row: 2/3;
  text-align: center;
}

.pic2 {
  grid-column: 4/5;
  grid-row: 2/3;
  text-align: center;
}

.pic3 {
  grid-column: 5/6;
  grid-row: 2/3;
  text-align: center;
}

.animationBox {
  animation: slideAnimation 1 forwards 1.5s ease;
}

.subpageIntro {
  grid-column: 3/6;
  justify-self: center;
  text-align: center;
}

.subpageIntro h1 {
  margin-top: 0px;
  margin-bottom: 15px;
}

.subpageIntro p {
  font-size: 24px;
  font-weight: 200;
}

.arrowBox {
  margin-top: 50px;
  margin-bottom: 60px;
}

.arrowText {
  font-size: 36px;
  font-weight: 400;
}

.arrow {
  transform: translateY(5px);
  padding: 0 30px;
}

.buttons {
  margin-bottom: 30px;
}

.portfolio {
  display: grid;
  grid-template-columns: 1fr 30px repeat(3, minmax(50px, 350px)) 30px 1fr;
  color: black;
}

.portfolio img {
  width: 100%;
}

.portfolio h1 {
  margin-top: 50px;
  margin-bottom: 0;
  grid-column: 1/3;
}

.portfolio h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 15px;
}

.portfolio p {
  font-size: 24px;
  text-align: justify;
  margin-top: 15px;
}

.websites a:hover {
  transform: scale(1.03);
  opacity: 0.8;
  transition: 0.5s;
}

.websites {
  grid-column: 3/6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 100px;
}

.websites a {
  grid-column: 1/2;
  transition: 0.5s;
}

.websites img {
  box-shadow: 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 100px 80px rgba(0, 0, 0, 0.07);
}

.description {
  grid-column: 2/3;
}

.projectsContainer {
  grid-column: 1/8;
  display: grid;
  grid-template-columns: 1fr 30px repeat(3, minmax(50px, 350px)) 30px 1fr;
  background: linear-gradient(90deg, rgba(107, 44, 59, 0.85) 0%, rgba(107, 44, 59, 0.85) 100%), url(images/background.png) center center no-repeat fixed;
  background-size: auto, cover;
  margin-top: 100px;
  padding-bottom: 100px;
}

.websitesProjects {
  grid-column: 3/6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.websitesProjects h1 {
  color: white;
  margin-bottom: 70px;
}

.logos {
  grid-column: 3/6;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 30px;
  grid-row-gap: 100px;
}

.logos img {
  box-shadow: 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 100px 80px rgba(0, 0, 0, 0.07);
}

.logos a:hover {
  transform: scale(1.03);
  opacity: 0.8;
  transition: 0.5s;
}

.logos a {
  transition: 0.5s;
}

.logosProjects {
  grid-column: 3/6;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.logosProjects h1 {
  grid-column: 1/4;
  color: white;
  margin-bottom: 70px;
}

.goUpButton {
  display: flex;
  position: fixed;
  bottom: 5%;
  right: 15%;
  width: 60px;
  height: 60px;
  background-color: #CC5333;
  border-radius: 35px;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.goUpButton:hover {
  background-color: #811a00;
}

.goUpButton img {
  width: 30px;  
}

.showGoUpButton {
  visibility: visible;
  opacity: 1;
}

.endOfPortfolio {
  grid-column: 3/6;
  text-align: center;
  margin: 100px 0;
}

.endOfPortfolio h2 {
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.endOfPortfolio img {
  max-width: 200px;
}

.endOfPortfolio .ghostButton {
  color: #CC5333;
}

.endOfPortfolio a:hover {
  background-color: #811a00;
  border-color: #811a00;
  color: #FFFFFF;
}

.aboutMe {
  grid-column: 3/6;
  grid-row: 2/3;
  justify-self: center;
  align-self: start;
  margin-top: 57px;
  text-align: center;
  animation: slideAnimation 1 forwards 1.5s ease;
}

.aboutMe h1 {
  margin-top: 0px;
  margin-bottom: 15px;
}

.aboutMe p {
  font-size: 24px;
  font-weight: 200;
}

.me {
  grid-column: 3/6;
  grid-row: 2/3;
  align-self: end;
  justify-self: center;
}

.moreAboutMe {
  color: black;
  font-size: 24px;
  display: grid;
  grid-template-columns: 1fr 30px repeat(3, minmax(50px, 350px)) 30px 1fr;
}

.moreAboutMeBox {
  grid-column: 3/6;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  grid-column-gap: 50px;
  grid-row-gap: 70px;
  margin: 100px 0;
  text-align: justify;
  font-weight: 300;
}

.moreAboutMeBox img {
  justify-self: center;
}

#me1 {
  grid-column: 2/4;
}

#me2 {
  grid-column: 1/3;
  grid-row: 2/3;
}

#me3 {
  grid-column: 2/4;
}

.card {
  display: inline-block;
  height: 510px;
  width: 305px;
  background-color: white;
  border-radius: 25px;
  margin: 24px 35px;
  transition: 0.5s;
  color: black;
  box-shadow: 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 100px 80px rgba(0, 0, 0, 0.07);
}

.card:hover {
  transform: scale(1.03);
}

.card h2 {
  font-size: 36px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 22px;
}

.priceSmall {
  font-size: 18px;
  color: #636363;
}

.priceBig {
  font-size: 48px;
  font-weight: 300;
  color: #CC5333;
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings:"lnum" 1; 
  -moz-font-feature-settings:"lnum=1"; 
  -ms-font-feature-settings:"lnum" 1; 
  -o-font-feature-settings:"lnum" 1; 
  -webkit-font-feature-settings:"lnum" 1; 
  font-feature-settings:"lnum" 1;
}

.card ul {
  list-style-image: url(images/list.png);
  margin-top: 22px;
  margin-bottom: 40px;
}

.card li {
  text-align: left;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 6px;
  margin-left: 12px;
}

.card a:hover {
  background-color: #811a00;
  border-color: #811a00;
  color: #FFFFFF;
}

.info {
  grid-column: 3/6;
  grid-row: 3/4;
  align-self: start;
  margin-top: 0px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 200;
  text-align: center;
}

.contact {
  min-height: 620px;
  width: 530px;
  background-color: white;
  border-radius: 25px;
  box-shadow: 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 100px 80px rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}

form {
  grid-column: 1/2;
  grid-row: 2/3;
  align-self: start;
  display: grid;
  grid-template-columns: 35px 1fr 35px 1fr 35px;
  grid-template-rows: 100px 100px auto 1fr;
  height: 100%;
}

.contact h1 {
  color: black;
  grid-column: 1/2;
  align-self: center;
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 15px;
}

input {
  background: #F3F3F3;
  border: 2px solid #C2C2C2;
  box-sizing: border-box;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 2px;
  height: 40px;
  width: 100%;
  font-size: 18px;
  padding-left: 8px;
  font-family: 'Raleway';
  font-weight: 400;
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings:"lnum" 1; 
  -moz-font-feature-settings:"lnum=1"; 
  -ms-font-feature-settings:"lnum" 1; 
  -o-font-feature-settings:"lnum" 1; 
  -webkit-font-feature-settings:"lnum" 1; 
  font-feature-settings:"lnum" 1;
}

input:focus, textarea:focus {
  outline-color: #ff9b80;
}

textarea {
  font-size: 18px;
  padding: 5px 8px;
  font-family: 'Raleway';
  font-weight: 400;
}

label {
  color: black;
  font-size: 18px;
  font-weight: 300;
}

.name {
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: start;
  text-align: left;
  width: 100%;
}

.surname {
  display: none;
}

.email {
  grid-column: 4/5;
  grid-row: 1/2;
  justify-self: start;
  text-align: left;
  width: 100%;
}

.subject {
  grid-column: 2/5;
  grid-row: 2/3;
  justify-self: start;
  text-align: left;
  width: 100%;
}

.message {
  grid-column: 2/5;
  grid-row: 3/4;
  justify-self: start;
  text-align: left;
  width: 100%;
}

#message {
  background: #F3F3F3;
  border: 2px solid #C2C2C2;
  box-sizing: border-box;
  border-radius: 5px;
  margin-top: 5px;
  height: 160px;
  width: 100%;
  resize: none;
  margin-bottom: -3px;
}

.submitButton {
  grid-column: 2/5;
  grid-row: 4/5;
  align-self: center;
  justify-self: center;
  width: 180px;
  height: 50px;
  border: 0px;
  font-size: 20px;
  font-weight: 400;
  background-color: #CC5333;
  color: white;
  text-align: center;
  border-radius: 100px;
  transition: 0.3s;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: -5px;
}

.submitButton:hover {
  background-color: #811a00;
  border-color: #811a00;
  color: #FFFFFF;
  transition: 0.3s;
  transform: scale(1.05);
}

.error {
  color: #FF0000;
}

.inputError {
  background: #FFE6E6 !important;
  border: 2px solid #FF7575 !important;
}

.displayNone {
  display: none;
}

.sentBox {
  grid-row: 1/3;
  justify-self: center;
  align-self: center;
}

.sentMessage {
  text-align: center;
  font-weight: 500;
  color: #3C9D00 !important;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
  padding-bottom: 0 !important;
}

.footergrid {
  height: 50px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 50px;
  justify-items: center;
  align-items: center;
}

.footergrid p {
  font-size: 20px;
  font-weight: 200;
  color: black;
  text-align: center;
}

.stack {
  height: 394px;
  width: 100%;
  background: url("images/stack.png") center 220px no-repeat;
}

/* For tablets: */
@media screen and (max-width: 900px) {
  .menu {
    font-size: 18px;
  }

  p {
    font-size: 18px;
  }

  .navgrid p {
    font-size: 18px;
  }

  .portfolio p {
    font-size: 18px;
  }

  .meIndex {
    grid-column: 4/7;
    object-fit: cover;
    object-position: 0 0;
    width: 260px;
    height: 429px;
  }

  .card {
    margin-left: 20px;
    margin-right: 20px;
  }

  a:hover {
    opacity: 1;
    transform: none;
  }

  .button:hover {
    background-color: #CC5333;
    color: #FFFFFF;
    transform: none;
  }

  .ghostButton:hover {
    background-color: transparent;
    border: 3px solid #CC5333;
    color: #FFFFFF;
    transform: none;
  }

  .goUpButton {
    right: 5vw;
    bottom: 5vw;
  }

  .goUpButton:hover {
    background-color: #CC5333;
  }
  
  .stack {
    height: 1094px;
    background-image: none;
  }
  
}

/* For mobile phones: */
@media screen and (max-width: 767px) {
  h1 {
    font-size: 9vw; 
  }

  .navgrid {
    height: max(500px, 90vh);
    grid-template-columns: 20px 1fr 20px;
    grid-template-rows: 80px 1fr;
  }

  .navgrid p {
    font-size: min(5vw, 24px);
  }

  .welcomeBox {
    grid-column: 2/3;
    grid-row: 2/3;
    align-self: start;
    justify-self: center;
    padding-bottom: 50px;
    z-index: 1;
    margin-top: 5vh;
  }

  .welcomeText {
    font-size: 9vw; 
    text-align: center;
  }

  .button {
    display: block;
    margin: 0 auto;
  }

  .ghostButton {
    display: block;
    margin-left: 0;
    margin: 12px auto;
  }

  .meIndex {
    height: 35vh;
    width: 21vh;
    min-height: 140px;
    min-width: 84px;
    grid-column: 2/4;
    grid-row: 2/3;
    align-self: end;
    justify-self: right;
  }

  .logo {
    font-size: 24px;
    margin-top: 6px;
    grid-column: 2/3;
    grid-row: 1/2;
    width: 230px;
  }

  .logo img {
    height: 36px;
  }

  .menu {
    position: absolute;
    display: none;
    grid-row: none;
    grid-column: none;
    margin: 0 0;
    text-align: right;
    padding-top: 80px;
    padding-right: 20px;
    background-color: rgba(204, 83, 51, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-sizing: border-box;
    width: 100vw;
    height: max(500px, 90vh);
    z-index: 2;
    border-bottom: 1px solid #811a00;
  }

  .menu li {
    font-size: 7vw;
    font-weight: 400;
    display: list-item;
    margin-bottom: 35px;
  }

  .menu a {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 10px;
  }

  #hamburger {
    display: block;
    justify-self: right;
    grid-column: 2/3;
    grid-row: 1/2;
    z-index: 3;
    padding: 20px 14px;
    margin-right: -14px;
  }

  .bars {
    height: 4px;
    width: 25px;
    background-color: white;
    border-radius: 4px;
    transition: 0.3s;
  }

  #bar1 {
    transform: translateY(-4px);
  }

  #bar3 {
    transform: translateY(4px);
  }

  .changeHam #bar1 {
    transform: translateY(4px) rotateZ(-45deg);
  }

  .changeHam #bar2 {
    transform: translatex(20px);
    opacity: 0;
  }

  .changeHam #bar3 {
    transform: translateY(-4px) rotateZ(45deg);
  }

  @keyframes menuAnimation {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  .changeMenu {
    animation: menuAnimation 1 forwards 0.35s ease;
  }

  .displayMenu {
    display: block;
  }

  @keyframes menuAnimation2 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-100%);
    }
  }

  .closeMenu {
    animation: menuAnimation2 1 forwards 0.35s ease;
  }

  .content {
    margin: 50px 0;
    height: auto;
    grid-template-columns: 20px 1fr 20px;
    grid-template-rows: 1fr 1fr 1fr;
    grid-row-gap: 30px;
    align-items: center;
  }

  .content img {
    width: 100%;
  }

  .content p {
    font-size: 5vw;
  }

  .moreAboutMe p {
    font-size: 5vw;
  }
  
  .pic1 {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .pic2 {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  .pic3 {
    grid-column: 2/3;
    grid-row: 3/4;
  }

  .subpageIntro {
    grid-column: 2/3;
    grid-row: 2/3;
    align-self: start;
    justify-self: center;
  }

  .subpageIntro h1 {
    margin-top: 5vh;
  }

  .subpageIntro br {
    display: none;
  }

  .arrow {
    height: 5vw;
    padding-left: 2vw;
    padding-right: 2vw;
    transform: translateY(2px);
  }

  .arrowText {
    font-size: 5vw; 
  }

  .arrowBox {
    margin: 6vh 0;
  }

  .portfolio h2 {
    font-size: 8vw; 
    text-align: center;
    margin-top: 15px;
  }

  .portfolio p {
    font-size: 5vw;
  }

  .portfolio img {
    margin-top: 15vw;
  }

  .projectsContainer h1 {
    margin-bottom: 0;
  }

  .websites {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  .description {
    grid-column: 1/2;
  }

  .websitesProjects {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  .websitesProjects img {
    grid-column: 1/2;
  }

  .logos {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  .logos a {
    grid-column: 1/2;
  }

  .logosProjects {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  .logosProjects img {
    grid-column: 1/2;
  }

  .endOfPortfolio {
    margin: 15vw 0;
  }

  .aboutMe {
    grid-column: 2/3;
    grid-row: 2/3;
    align-self: start;
    justify-self: center;
    margin-top: 5vh;
  }

  .aboutMe br {
    display: none;
  }

  .me {
    grid-column: 2/3;
    grid-row: 2/3;
    align-self: end;
    justify-self: center;
    max-width: 100%;
  }

  .moreAboutMeBox {
    margin: 5vw 0;
    grid-template-columns: 1fr;
    grid-row-gap: 0;
  }

  .moreAboutMeBox img {
    max-width: 100%;
    margin-top: 15vw;
  }

  .moreAboutMeBox p {
    padding-top: 5vw;
  }

  #me1 {
    margin-top: 0;
    grid-column: 1/2;
  }
  
  #me2 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  
  #me3 {
    grid-column: 1/2;
    margin-bottom: 15vw;
  }

  .card {
    display: block;
    margin: 24px 0;
    max-width: 88vw;
  }

  .card h2 {
    margin-top: 40px;
    padding-top: 40px;
  }

  .info {
    grid-column: 2/3;
    font-size: 18px !important;
    max-width: 290px;
  }

  .mobilePricing {
    height: 1130px;
  }

  .mobileContact {
    height: 670px;
  }

  .mobileContent {
    height: 200px;
  }

  .contact {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  
  form {
    grid-column: 1/2;
    grid-row: 2/3;
    align-self: start;
    display: grid;
    grid-template-columns: 25px 1fr 25px;
    grid-template-rows: 100px 100px 100px auto 1fr;
    height: 100%;
  }

  .contact h1 {
    margin-top: 30px;
    margin-left: 35px;
    margin-right: 35px;
    padding-bottom: 20px;
  }

  .email {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  .subject {
    grid-column: 2/3;
    grid-row: 3/4;
  }

  .message {
    grid-column: 2/3;
    grid-row: 4/5;
  }

  .sentBox br {
    display: unset;
  }

  .submitButton {
    margin: 35px 0;
    grid-column: 2/3;
    grid-row: 5/6;
  }

  .sentImage {
    width: 75%;
    max-width: 300px;
  }

  .sentMessage {
    font-size: 9vw !important;
    margin-left: 25px !important;
    margin-right: 25px !important;
  }

  .footergrid {
    height: 70px;
    grid-template-columns: 20px 1fr 20px;
    grid-template-rows: 70px;
  }

  .footergrid p {
    grid-column: 2/3;
    font-size: 5vw;
  }

}