/* whole document */
body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  background-color: #fdedfd;
  color: white;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

h1, h2, h3 {
  font-family: "Big Shoulders Display";
}

h1 {
  margin-top: 100px;
  margin-bottom: 0;
  text-align: center;
  font-size: 48px;
  color: black;
}

h2 {
  font-size: 28px;
}

button {
  background-color: yellow;
  border-radius: 10px;
}

button:hover {
  cursor: pointer;
}

.icon {
  font-size: 2.5rem;
  color: black;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

/* navigation */
nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (auto)[2];
      grid-template-rows: repeat(2, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: purple;
  position: fixed;
  border-radius: 0 40px 10px 0;
  top: 5px;
  width: calc(100% - 5px);
  -webkit-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
          box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 24px;
  margin: 5px 0 0 10px;
  font-family: "Big Shoulders Display";
  color: white;
}

.logo .surname {
  color: yellow;
}

.nav-links {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px 15px 5px 5px;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
}

/* footer */
footer {
  background-color: purple;
  padding: 20px;
}

/* contact button */
#contact {
  position: fixed;
  bottom: 10px;
  right: 10px;
  height: 50px;
  width: 80px;
  border-radius: 10px;
  font-size: 2.5rem;
  -webkit-box-shadow: -3px -3px 2px rgba(0, 0, 0, 0.5);
          box-shadow: -3px -3px 2px rgba(0, 0, 0, 0.5);
}

@media only screen and (min-width: 568px) {
  nav {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1fr 1fr;
        grid-template: 1fr / 1fr 1fr;
  }
  nav .logo {
    margin-bottom: 5px;
  }
  nav .nav-links {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 30px;
  }
}

section {
  display: -ms-grid;
  display: grid;
  height: 100vh;
}

#work {
  -ms-grid-rows: minmax(120px, auto) min-content min-content auto;
      grid-template-rows: minmax(120px, auto) -webkit-min-content -webkit-min-content auto;
      grid-template-rows: minmax(120px, auto) min-content min-content auto;
  min-height: 640px;
}

#work .heading {
  margin: auto 0 0 0;
  text-align: center;
}

#work .subheading {
  margin: 10px;
  color: white;
  text-align: left;
}

#work .big-preview {
  background-color: purple;
  width: 90%;
  height: 200px;
  margin: 10px 0;
}

#work .work-section-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#work .work-section-buttons button {
  margin: 0 10px;
  padding: 0;
  height: 50px;
  width: 100%;
  max-width: 80px;
}

#work .websites {
  border-radius: 0 10px 10px 0;
  background-image: url("images/website_test_screenshot.jpg");
}

#work .websites .subheading {
  background-color: #3c4043;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

#work .games {
  border-radius: 10px 0 0 10px;
  -ms-grid-column-align: end;
      justify-self: end;
  background-image: url("images/game.gif");
  background-size: 100%;
}

#career {
  -ms-grid-rows: (-webkit-min-content)[6];
  -ms-grid-rows: (min-content)[6];
  -ms-grid-columns: -webkit-min-content auto;
  -ms-grid-columns: min-content auto;
      grid-template: repeat(6, -webkit-min-content)/min-content auto;
      grid-template: repeat(6, min-content)/min-content auto;
  font-size: 20px;
  margin: 0 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  color: black;
}

#career .heading {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  text-align: center;
  margin: auto 0 10px 0;
}

#career .timeline-text {
  margin: 10px;
}

#career .career-section-buttons {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#career .career-section-buttons button {
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 10px 10px 0 0;
}

#career .career-section-buttons .resume {
  width: 120px;
}

#about {
  -ms-grid-rows: (min-content)[4];
      grid-template-rows: repeat(4, -webkit-min-content);
      grid-template-rows: repeat(4, min-content);
  grid-gap: 10px;
  color: white;
  -ms-flex-line-pack: center;
      align-content: center;
  max-width: 600px;
}

#about .heading {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  color: black;
  margin: 0 0 10px 0;
}

#about .about-section-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#about .about-section-buttons button {
  margin: 0 5px;
  font-size: 2.5rem;
  padding: 0;
  width: 50px;
  height: 50px;
}

#about .interest {
  background-color: purple;
}

#about .interest .subheading {
  margin: 10px;
  font-size: 24px;
  text-align: left;
}

#about .interest .description {
  margin: 10px;
  padding: 0;
}

#about .right {
  margin-right: 10px;
  border-radius: 0 10px 10px 0;
}

#about .left {
  margin-left: 10px;
  border-radius: 10px 0 0 10px;
}

@media only screen and (min-width: 568px) {
  #work {
    -ms-grid-rows: minmax(120px, auto) -webkit-min-content auto;
    -ms-grid-rows: minmax(120px, auto) min-content auto;
    -ms-grid-columns: 1fr 1fr;
        grid-template: minmax(120px, auto) -webkit-min-content auto/1fr 1fr;
        grid-template: minmax(120px, auto) min-content auto/1fr 1fr;
  }
  #work .heading {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
  #work .big-preview {
    width: 95%;
    height: 400px;
  }
  #work .work-section-buttons {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
  #work .work-section-buttons button {
    margin: 0 2.5%;
  }
  .career-section-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #about {
    -ms-grid-rows: (-webkit-min-content)[3];
    -ms-grid-rows: (min-content)[3];
    -ms-grid-columns: (1fr)[3];
        grid-template: repeat(3, -webkit-min-content)/repeat(3, 1fr);
        grid-template: repeat(3, min-content)/repeat(3, 1fr);
    margin: 10px auto;
  }
  #about .heading, #about .about-section-buttons {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
  }
  #about .interest {
    border-radius: 10px;
    margin: 0;
  }
}
/*# sourceMappingURL=index.css.map */