html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  margin: 0;
}

body .navbar .logo {
  width: 60px;
  margin-top: 5px;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

body .navbar .logo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

body .navbar .hamburger-menu {
  display: none;
  width: 40px;
  float: right;
  margin-top: 20px;
}

body .navbar .hamburger-menu:hover {
  cursor: pointer;
}

body .navbar .navbar-right {
  float: right;
  display: inline;
  margin-top: 20px;
}

body .navbar .navbar-right .menu-exit {
  display: none;
  width: 40px;
  float: right;
  margin-top: 20px;
}

body .navbar .navbar-right .menu-exit:hover {
  cursor: pointer;
}

body .navbar .navbar-right li {
  list-style-type: none;
  display: inline-block;
  margin-left: 20px;
}

body .navbar .navbar-right li a {
  text-decoration: none;
  color: #5D45DC;
  font-family: Poppins;
  font-weight: 300;
  text-shadow: 0.5px 0.5px 1px #8a8989;
}

body .navbar .navbar-right a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #5D45DC;
  -webkit-transition: width .3s;
  transition: width .3s;
}

body .navbar .navbar-right a:hover {
  color: #2204b6;
}

body .navbar .navbar-right a:hover::after {
  width: 100%;
}

body .navbar hr {
  color: #878787;
  opacity: 25%;
}

body .hero {
  height: 700px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, #ffffff), color-stop(75%, #ffffff), color-stop(75%, #5D45DC), to(#5D45DC));
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #ffffff 75%, #5D45DC 75%, #5D45DC 100%);
}

body .hero .left-col {
  float: left;
  height: 100%;
}

body .hero .left-col h2 {
  margin-top: 100px;
  margin-bottom: 5px;
  font-family: Poppins;
  font-weight: 300;
  text-shadow: 0.5px 0.5px 1px #8a8989;
  color: #878787;
}

body .hero .left-col h1 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: Poppins;
  font-size: 3em;
  font-weight: 300;
  text-shadow: 0.5px 0.5px 1px #8a8989;
}

body .hero .left-col h1 .first-name {
  color: #5D45DC;
}

body .hero .left-col h3 {
  margin-top: 5px;
  font-family: Poppins;
  font-weight: 300;
  text-shadow: 0.5px 0.5px 1px #8a8989;
  margin-bottom: 35px;
}

body .hero .left-col h3 .full-stack {
  color: #5D45DC;
}

body .hero .left-col a {
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #5D45DC;
  font-family: Poppins;
  font-weight: 500;
  color: #5D45DC;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-shadow: 0.5px 0.5px 1px #8a8989;
}

body .hero .left-col a:hover {
  cursor: pointer;
  background-color: #5D45DC;
  color: #ffffff;
  text-shadow: none;
}

body .hero .right-col {
  float: right;
  width: 50%;
  height: 100%;
}

body .hero .right-col .sean {
  display: none;
}

body .hero .right-col .sean2 {
  margin-top: 100px;
  float: right;
  width: 371.75px;
}

body .projects {
  background-color: #5D45DC;
}

body .projects .card {
  display: inline-block;
  width: 40%;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 10px;
  background-color: #6855c4;
  border-radius: .5em;
}

body .projects .card .projectheader {
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 150%;
  color: #BEFFFD;
  word-wrap: normal;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

body .projects .card .projectheader:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

body .projects .card a {
  text-decoration: none;
}

body .projects .card .view-code {
  font-family: Poppins;
  font-weight: 500;
  font-size: 75%;
  color: #f2d4f5;
  border: 1px solid #f2d4f5;
  border-radius: .25em;
  word-wrap: normal;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-shadow: 0.5px 0.5px 1px #8a8989;
}

body .projects .card .view-code:hover {
  background-color: #f2d4f5;
  color: #5D45DC;
}

body .projects .card .subheader {
  margin-top: 25px;
  font-family: Poppins;
  font-weight: 300;
  font-size: 75%;
  color: #ffffff;
  height: 3em;
}

body .projects .card .projectimg {
  margin-top: 10px;
  width: 100%;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

body .projects .card .projectimg:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

body .contact {
  height: 600px;
  background-color: #BEFFFD;
}

body .contact p {
  padding-top: 50px;
  margin-top: 0;
  margin-bottom: 100px;
  text-align: center;
  color: #5D45DC;
  font-family: Poppins;
  font-weight: 300;
  font-size: 200%;
}

body .contact .contact-flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

body .contact .contact-flexbox .contact-flexitem {
  margin-left: 20px;
  margin-right: 20px;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

body .contact .contact-flexbox .contact-flexitem:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

body .contact .contact-flexbox .contact-flexitem a {
  text-decoration: none;
}

body .contact .contact-flexbox .contact-flexitem a h3 {
  margin-top: 7px;
  margin-bottom: 30px;
  text-align: center;
  color: #5D45DC;
  font-family: Poppins;
  font-weight: 300;
  font-size: 150%;
}

body .contact .contact-flexbox .contact-flexitem a img {
  width: 100px;
  display: block;
}

body .contact .contact-flexbox .contact-flexitem a .linkedinlogo1-img {
  margin-top: 10px;
  margin-bottom: 25px;
}

body .contact .contact-flexbox .contact-flexitem a .githublogo1-img {
  margin-bottom: 10px;
}

body .footer {
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-family: Poppins;
}

body .footer a {
  padding-right: .5em;
  padding-left: .5em;
  color: black;
  font-size: .75em;
}

.home-container {
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
  height: auto;
}

.projects-container {
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-container {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
}

@media all and (max-width: 1440px) {
  body .hero .left-col {
    font-size: 80%;
  }
}

@media all and (max-width: 1280px) {
  body .hero .right-col .sean2 {
    display: none;
  }
  body .hero .right-col .sean {
    margin-top: 100px;
    display: inline;
    float: right;
    width: 75%;
  }
}

@media all and (max-width: 1150px) {
  body .hero .left-col {
    font-size: 60%;
  }
  body .hero .right-col .sean {
    width: 50%;
  }
}

@media all and (max-width: 1024px) {
  body .hero .right-col {
    width: 35%;
  }
  body .hero .right-col .sean {
    width: 100%;
  }
}

@media all and (max-width: 768px) {
  body .navbar .hamburger-menu {
    display: inline;
  }
  body .navbar .navbar-right {
    display: none;
    position: fixed;
    text-align: center;
    background: #5D45DC;
    width: 75px;
    height: auto;
    top: 0;
    right: 10%;
    padding: .5em 1em;
  }
  body .navbar .navbar-right .menu-exit {
    display: block;
    margin-top: 0;
    margin-bottom: 12px;
  }
  body .navbar .navbar-right li {
    display: block;
    margin: 5px;
  }
  body .navbar .navbar-right li a {
    color: #ffffff;
  }
  body .navbar .navbar-right a::after {
    background: #ffffff;
  }
  body .navbar .navbar-right a:hover {
    color: #ffffff;
  }
  body .hero {
    text-align: center;
  }
  body .hero .left-col {
    float: none;
    font-size: 100%;
    height: 50%;
  }
  body .hero .right-col {
    float: none;
    display: inline-block;
    width: 100%;
    height: 50%;
  }
  body .hero .right-col .sean {
    display: none;
  }
  body .hero .right-col .sean2 {
    display: block;
    margin-top: 0;
    margin-left: 25%;
    margin-right: 25%;
    width: 50%;
  }
  body .projects .card {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }
  body .projects .card .projectimg {
    margin-top: 25px;
  }
  body .contact p {
    margin-bottom: 20px;
  }
  body .contact .contact-flexbox .contact-flexitem {
    margin-top: 20px;
  }
  .home-container {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    height: 100%;
  }
  .projects-container {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
}

@media all and (max-width: 500px) {
  body .hero .left-col {
    font-size: 80%;
  }
}

@media all and (max-width: 414px) {
  body .hero {
    background: #ffffff;
  }
  body .hero .right-col {
    height: auto;
  }
  body .hero .right-col .sean {
    margin: 0;
    display: block;
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
  }
  body .hero .right-col .sean2 {
    display: none;
  }
  body .contact .contact-flexbox .contact-flexitem a h3 {
    font-size: 100%;
  }
  body .contact .contact-flexbox .contact-flexitem a img {
    width: 75px;
  }
}

body {
  -webkit-animation: fadeIn ease 2s;
          animation: fadeIn ease 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=main.css.map */