body {
  margin: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

p {
  margin-top: 0;
}

a {
  text-decoration: none;
}

ul {
  margin-top: 0;
}

@-webkit-keyframes profpic-animation {
  0% {
    left: -500px;
  }
  100% {
    left: 5%;
  }
}

@keyframes profpic-animation {
  0% {
    left: -500px;
  }
  100% {
    left: 5%;
  }
}

@-webkit-keyframes home-text-animation {
  0% {
    left: -5000px;
  }
  100% {
    left: 25%;
  }
}

@keyframes home-text-animation {
  0% {
    left: -5000px;
  }
  100% {
    left: 25%;
  }
}

@-webkit-keyframes a-animation {
  0% {
    top: -300px;
  }
  100% {
    top: 0px;
  }
}

@keyframes a-animation {
  0% {
    top: -300px;
  }
  100% {
    top: 0px;
  }
}

.navbar {
  font-family: 'Poiret One', cursive;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 100vw;
  background-color: #B9B9B9;
  margin: 0;
  padding: 0;
  z-index: 2;
  top: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar a {
  position: relative;
  color: #373636;
  padding: 14px 14px;
  border-bottom: solid #B9B9B9;
  text-decoration: none;
}

.navbar a:hover {
  border-bottom: solid #373636;
}

.navbar #a1 {
  -webkit-animation-name: a-animation;
          animation-name: a-animation;
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
}

.navbar #a2 {
  -webkit-animation-name: a-animation;
          animation-name: a-animation;
  -webkit-animation-duration: 4.8s;
          animation-duration: 4.8s;
}

.navbar #a3 {
  -webkit-animation-name: a-animation;
          animation-name: a-animation;
  -webkit-animation-duration: 5.1s;
          animation-duration: 5.1s;
}

.navbar #a4 {
  -webkit-animation-name: a-animation;
          animation-name: a-animation;
  -webkit-animation-duration: 5.4s;
          animation-duration: 5.4s;
}

.navbar .navbar-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .navbar-title {
  padding-left: 20px;
  text-align: center;
}

.navbar .navbar-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 24px;
}

.navbar .hamburger {
  position: relative;
  display: none;
  width: 45px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  border: none;
  margin-right: 16px;
}

.navbar .hamburger .bar, .navbar .hamburger:after, .navbar .hamburger:before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #373636;
  margin: 6px 0px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 30;
}

.navbar .hamburger.is-active:before {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
          transform: rotate(-45deg) translate(-6px, 6px);
}

.navbar .hamburger.is-active:after {
  -webkit-transform: rotate(45deg) translate(-7px, -7px);
          transform: rotate(45deg) translate(-7px, -7px);
}

.navbar .hamburger.is-active .bar {
  opacity: 0;
}

.navbar .mobile-nav {
  display: none;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  z-index: 20;
  background-color: #9b9a9a;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.navbar .mobile-nav a {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 24px auto 16px;
  text-align: center;
  padding: 12px 16px;
  background-color: #373636;
  color: white;
  text-decoration: none;
}

.navbar .mobile-nav a:hover {
  background-color: black;
}

.navbar .mobile-nav.is-active {
  display: block;
  left: 0;
}

#home {
  height: 100vh;
  max-width: 100%;
  background: url("../img/wedding.jpg") no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#home #profpic {
  width: 17%;
  border-radius: 40px;
  position: absolute;
  top: 130px;
  left: 5%;
  -webkit-animation-name: profpic-animation;
          animation-name: profpic-animation;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

#home #home-text {
  height: 60px;
  width: 60%;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: black;
  position: absolute;
  top: 230px;
  left: 25%;
  padding: 10px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-animation-name: home-text-animation;
          animation-name: home-text-animation;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

#home #home-text #home-text-p {
  margin: auto;
}

#home #home-text-background {
  height: 60px;
  width: 60%;
  padding: 10px;
  background-color: rgba(238, 195, 198, 0.75);
  position: absolute;
  top: 230px;
  left: 25%;
  border-radius: 10px;
  -webkit-animation-name: home-text-animation;
          animation-name: home-text-animation;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

#bio {
  min-height: 100vh;
  background: url("../img/vaucluse-desktop.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

#bio #bio-title {
  font-family: 'Poiret One', cursive;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 100vw;
  margin: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 36px;
  background-color: rgba(238, 195, 198, 0.75);
}

#bio #bio-container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 86%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#bio #bio-text-container {
  width: 60%;
}

#bio #bio-img-container {
  width: 40%;
}

#bio #bio-text {
  width: 100%;
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  color: black;
  padding: 1rem;
  border-radius: 10px;
  background-color: rgba(238, 195, 198, 0.75);
}

#bio #cricket {
  width: 60%;
  border-radius: 40px;
}

#bio #bio-map-container {
  padding-top: 4rem;
  width: 100%;
  min-height: 500px;
}

#bio #bio-map-container #location-header {
  text-align: center;
  font-family: 'Poiret One', cursive;
  font-weight: bold;
  width: 100%;
  margin: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 24px;
  background-color: rgba(238, 195, 198, 0.75);
}

#bio #bio-map-container iframe {
  width: 100%;
  height: 70vh;
}

#portfolio {
  min-height: 100vh;
  background: url("../img/peoplemover-desktop-v2.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

#portfolio #portfolio-title {
  font-family: 'Poiret One', cursive;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 100vw;
  margin: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 36px;
  background-color: rgba(238, 195, 198, 0.75);
}

#portfolio #portfolio-container {
  width: 80%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#portfolio #portfolio-main {
  width: 58%;
}

#portfolio #portfolio-main #portfolio-text {
  width: 80%;
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  padding: 1rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: rgba(238, 195, 198, 0.75);
}

#portfolio #portfolio-main #portfolio-text #portfolio-header {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  width: 100%;
  font-size: 24px;
}

#portfolio #portfolio-main #portfolio-text .portfolio-project-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
  margin-bottom: 1rem;
  margin-top: 1rem;
  border-bottom: solid rgba(238, 195, 198, 0);
  cursor: pointer;
}

#portfolio #portfolio-main #portfolio-text .portfolio-project-container img {
  height: 10rem;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

#portfolio #portfolio-main #portfolio-text .portfolio-project-container p {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5rem;
}

#portfolio #portfolio-main #portfolio-text .portfolio-project-container:hover {
  border-bottom: solid black;
}

#portfolio #tech-div-container {
  width: 42%;
}

#portfolio #tech-div {
  font-family: 'Quicksand', sans-serif;
  font-size: 24px;
  width: 80%;
  background-color: rgba(238, 195, 198, 0.75);
  margin: 0;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 0.5rem;
}

#portfolio #tech-div #tech-title {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  width: 100%;
}

#portfolio #tech-div .tech-img {
  width: 25%;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#portfolio #tech-div .tech-img img {
  width: 80%;
}

#portfolio #tech-div .tech-label {
  width: 25%;
  margin: 0;
  font-size: 16px;
  margin: auto;
  text-align: center;
}

#portfolio .modal {
  display: none;
  position: fixed;
  z-index: 10;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.8);
  font-family: 'Quicksand', sans-serif;
}

#portfolio .modal-content {
  background-color: #d8d8d8;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

#portfolio .modal-content .modal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#portfolio .modal-content .modal-container .modal-container-img {
  width: 50%;
}

#portfolio .modal-content .modal-container .modal-container-img img {
  width: 100%;
}

#portfolio .modal-content .modal-container .modal-container-text {
  width: 50%;
}

#portfolio .modal-content .modal-container .modal-container-text .modal-header {
  font-family: 'Poiret One', cursive;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 0;
}

#portfolio .modal-content .modal-container .modal-container-text .modal-text {
  padding: 1rem;
}

#portfolio .modal-content .modal-container .modal-container-text .modal-text .modal-li {
  margin-bottom: 10px;
}

#portfolio .modal-content .modal-container .modal-container-text .modal-text .modal-links {
  padding: 2rem;
}

#portfolio .modal-content .modal-container .modal-container-text .modal-text a {
  padding: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  color: black;
  background-color: #b6b6b6;
  border-radius: 3px;
}

#portfolio .modal-content .modal-container .modal-container-text .modal-text a:hover {
  border-bottom: solid #080808;
}

#portfolio .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

#portfolio .close:hover,
#portfolio .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#cv {
  min-height: 100vh;
  background: url("../img/huddle-desktop.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  position: relative;
}

#cv #cv-title {
  text-align: center;
  width: 100%;
  max-width: 100vw;
  margin: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 36px;
  font-family: 'Poiret One', cursive;
  font-weight: bold;
  background-color: rgba(238, 195, 198, 0.75);
}

#cv #cv-div {
  width: 80%;
  padding-top: 4rem;
  padding-bottom: 6rem;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#cv #cv-div .cv-img {
  width: 20%;
  margin-bottom: 30px;
}

#cv #cv-div .cv-img img {
  width: 60%;
  border-radius: 10px;
}

#cv #cv-div .cv-text {
  width: 80%;
  display: -ms-grid;
  display: grid;
  margin-bottom: 30px;
}

#cv #cv-div .cv-text .cv-text-1,
#cv #cv-div .cv-text .cv-text-2 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

#cv #cv-div .cv-text .cv-text-1 {
  background-color: rgba(238, 195, 198, 0.75);
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

#cv #cv-div .cv-text .cv-text-2 {
  z-index: 1;
  padding: 10px;
  padding-top: 20px;
}

#cv #cv-link {
  font-family: 'Quicksand', sans-serif;
  margin-left: auto;
  margin-right: auto;
  background-color: #4E4949;
  text-decoration: none;
  padding: 3px;
  border-radius: 3px;
}

#cv #cv-link a {
  color: white;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  background-color: #B9B9B9;
  color: black;
  text-align: right;
  font-family: 'Poiret One', cursive;
  font-weight: bold;
  font-size: 20px;
  height: 30px;
  z-index: 2;
  padding-top: 5px;
  padding-bottom: 5px;
}

footer img {
  height: 100%;
}

footer div {
  display: inline;
  position: relative;
  bottom: 7px;
}

@media only screen and (max-width: 1300px) {
  #home #home-text {
    font-size: 22px;
  }
  #portfolio #tech-div {
    width: 90%;
  }
}

@media only screen and (max-width: 1150px) {
  #home #home-text {
    width: 70%;
  }
  #home #home-text-background {
    width: 70%;
  }
  #cv #cv-div .cv-img img {
    width: 80%;
  }
  #portfolio #tech-div .tech-label {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1000px) {
  #home #home-text {
    font-size: 20px;
  }
  #portfolio #portfolio-main {
    width: 90%;
    margin: auto;
  }
  #portfolio #portfolio-main #portfolio-text {
    width: 90%;
    margin: auto;
    padding: 1rem;
  }
  #portfolio #tech-div-container {
    width: 90%;
    margin: auto;
    padding-top: 4rem;
  }
  #portfolio #tech-div-container #tech-div {
    width: 90%;
    margin: auto;
    padding: 1rem;
  }
  #portfolio #tech-div-container #tech-div .tech-label {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {
  #home #home-text {
    top: 350px;
    left: 5%;
    width: 80%;
  }
  #home #home-text-background {
    top: 350px;
    left: 5%;
    width: 80%;
  }
  @-webkit-keyframes home-text-animation {
    0% {
      left: -5000px;
    }
    100% {
      left: 5%;
    }
  }
  @keyframes home-text-animation {
    0% {
      left: -5000px;
    }
    100% {
      left: 5%;
    }
  }
  #portfolio .modal .modal-content .modal-container .modal-container-img {
    width: 97%;
  }
  #portfolio .modal .modal-content .modal-container .modal-container-text {
    width: 97%;
  }
  #cv #cv-div .cv-img img {
    width: 90%;
  }
}

@media only screen and (max-width: 825px) {
  #home #home-text {
    width: 90%;
  }
  #home #home-text-background {
    width: 90%;
  }
  #location #location-div {
    left: 7%;
    width: 86%;
  }
}

@media only screen and (max-width: 768px) {
  .navbar .hamburger {
    display: block;
  }
  .navbar .navbar-links {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .navbar a {
    padding: 7px;
  }
  #home #profpic {
    width: 23%;
  }
  #home #home-text {
    font-size: 18px;
  }
  #portfolio #portfolio-container #portfolio-main #portfolio-text .portfolio-project-container {
    width: 90%;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 630px) {
  .navbar a {
    font-size: 20px;
    padding: 5px;
  }
  #home {
    background: url("../img/wedding-cropped.jpg") no-repeat center center fixed;
  }
  #home #home-text {
    width: 70%;
    font-size: 20px;
  }
  #home #home-text-background {
    width: 70%;
  }
  #bio #bio-img-container {
    width: 60%;
    margin: auto;
    margin-bottom: 2rem;
  }
  #bio #bio-img-container #cricket {
    width: 100%;
  }
  #bio #bio-text-container {
    width: 100%;
  }
  #bio #bio-text-container #bio-text {
    width: 80%;
  }
}

@media only screen and (max-width: 580px) {
  #location #location-div {
    font-size: 16px;
    left: 4%;
    width: 92%;
  }
  #portfolio #portfolio-main #portfolio-text .portfolio-div {
    width: 90%;
    margin: auto;
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 543px) {
  .navbar .navbar-title {
    font-size: 14px;
  }
  #home #profpic {
    width: 30%;
  }
  #home #home-text {
    width: 85%;
  }
  #home #home-text-background {
    width: 85%;
  }
}

@media only screen and (max-width: 480px) {
  .navbar a {
    padding: 4px;
  }
  .navbar .navbar-title {
    font-size: 12px;
  }
  #cv #cv-div {
    font-size: 17px;
  }
  #portfolio #portfolio-container #tech-div .tech-label {
    font-size: 12px;
  }
}

@media only screen and (max-width: 430px) {
  a {
    padding: 2px 2px;
  }
  .navbar .navbar-title {
    font-size: 10px;
  }
  .navbar a {
    font-size: 17px;
  }
  #home #profpic {
    width: 35%;
  }
  #cv #cv-div {
    font-size: 15px;
  }
  #location #location-div {
    font-size: 14px;
  }
}

@media only screen and (max-width: 400px) {
  #cv #cv-div {
    font-size: 14px;
  }
}

@media only screen and (max-width: 385px) {
  .navbar .navbar-title {
    font-size: 9px;
  }
  .navbar a {
    font-size: 16px;
  }
  #home #profpic {
    width: 40%;
  }
  #home #home-text {
    font-size: 18px;
  }
  #cv #cv-div {
    font-size: 13px;
  }
  #portfolio .modal .modal-content .modal-container .modal-container-text .modal-links a {
    padding: 0.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    color: black;
    background-color: #b6b6b6;
    border-radius: 3px;
  }
}

@media only screen and (max-width: 350px) {
  #portfolio #portfolio-container #tech-div .tech-label {
    font-size: 10px;
  }
}
/*# sourceMappingURL=style.css.map */