body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "lato", sans-serif;
}
header {
  height: 100vh;
  width: 100%;
  background-image: radial-gradient(rgb(231, 128, 132), rgba(145,	152,	229, 0.8)), url("https://images.pexels.com/photos/812264/pexels-photo-812264.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;

}
.span-container {
  color: rgba(255, 255, 255, 0.0);

}
.span-container span {

  display: inline-block;
  transition: all .4s ease;
  font-size: 48px;
  font-family: cursive;
  margin-bottom: 2rem;
}
.fade {
  transform: translateY(-15px);
  color: #fff;
  text-transform: lowercase;
  opacity: 1;
}
.container {
  width: 80%;
  margin: auto;
  text-align: center;
}
.text-container {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  text-align: center;
  padding: .5rem;
  filter: contrast(80%);
}
/*.text-container h1 {
  font-size: 48px;
  text-transform: capitalize;
  font-family: cursive;
}*/
.icon-container {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
}
.icon-container li {
  display: inline-block;
  padding: 0 1rem 0 1rem;
}
i {
  font-size: 1.7rem;
}
/************ Navigation **************/
.navigation {
  position: relative;
}
.navigation__background {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: rgba(145,	152,	229);
  position: fixed;
  top: 2%;
  right: 2%;
  z-index: 50;
  transition: transform .8s cubic-bezier(0.86, 0, 0.07, 1);
}



.navigation__checkbox {
    display: none;
}
.navigation__button {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: white;
    position: fixed;
    top: 2%;
    right: 2%;
    z-index: 100;
    cursor: pointer;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
}

.navigation__icon {
  position: relative;
  height: 2px;
  width: 24px;
  background-color: purple;
  display: inline-block;
  margin-top: 1.3rem;
  margin-left: 1rem;
}
.navigation__icon::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 24px;
  background-color: purple;
  display: inline-block;
  top: 10px;
}
.navigation__icon::after {
  position: absolute;
  content: "";
  height: 2px;
  top: 5px;
  width: 24px;
  background-color: rgb(231, 128, 132);
  display: inline-block;
}
.navigation__nav {
    height: 100vh;
    width: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    transition: all .8 cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: .4s;

}
.navigation__list {
    text-align: center;
    list-style: none;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.navigation__item {
    margin: 1rem;
}
.navigation__link,
.navigation__link:visited,
.navigation__link:link {
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 300;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    background-image: linear-gradient(110deg, transparent 0%, transparent 50%, white 50%);
    background-size: 220%;
    transition: all .4s;
}
.navigation__link:hover,
.navigation__link:active {
  background-position: 100%;
  transform: translateX(5px);
  color: #e66465;
}


.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  width: 100%;
  opacity: 1;
}



.navigation__button:hover  .navigation__icon::after {
  margin-bottom: .3rem;
}
.navigation__button:hover  .navigation__icon::before {
  margin-bottom: .3rem;
}
/********* About **************/

#about {
  display: flex;
  min-height: 60vh;
  text-align: center;
  width: 80%;
  margin: auto;
  padding: 4rem 4rem 1rem 4rem;
}
#about > div {
  flex-basis: 50%;
}
.name {
  color: rgb(145,	152,	229);
}

.text-h2 {
  font-size: 32px;
  font-weight: 400;
  font-family: Lato;
  line-height: 1.4;
  margin-bottom: 1rem;
}
#about h3 {
  margin-top: 2rem;
  font-size: 18px;
  font-weight: 400;
  font-family: Lato;
  line-height: 1.4;
}
.about__skills h2 {
  color: rgb(145,	152,	229);
  font-family: cursive;
  font-weight: 700;
  font-size: 1.9rem;
}
.about__skills__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.about__skills__list li {
  background-image: linear-gradient(to bottom, rgb(145,	152,	229), rgb(231, 128, 132));
  padding: .3rem;
  font-size: 1.1rem;
  width: 70%;
  margin: .2rem auto .2rem auto;
  text-transform: uppercase;
  color: #fff;
}

.icon {
  color: white;
  transition: all .4s;
}
.icon:hover {
  color: #636363;
}
.down-arrow {
  position: absolute;
  left: 50%;
  bottom: 3%;
}
#arrow {
  color: #fff;
  font-size: 2.4rem;
  text-decoration: none;
}
#work {
  text-align: center;
  height: auto;
  margin-bottom: 3rem;
}
#work h1 {
  font-family: cursive;
  color: rgb(145,	152,	229);
  font-size: 37px;
}
#work p {
  margin-bottom: 4rem;
  font-size: 1.2rem;
}
.email-me {
  color: rgb(145,	152,	229);
  margin-left: 3px;
  font-size: 1.2rem;
}
.work-container {
  width: 80%;
  margin: auto;
  display: flex;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  justify-content: space-between;
  height: 400px;
}
.project-img {
  width: 100%;
  height: 50%;
}
.project__link {
  display: block;
  text-decoration: none;
  margin-top: .5rem;
}
.github {
  background: transparent;
  display: inline-block;
  text-decoration: none;
  padding: 8px 13px;
  color: rgb(145,	152,	229);
  text-transform: capitalize;
  border: 4px solid rgb(145,	152,	229);
  border-radius: 30px;
  font-size: 22px;
  margin-top: 30px;
  box-shadow: 0 .4rem .9rem rgba(0, 0, 0, .6);
  transition: all .3s;
}
.github:hover {
  color: #fff;
  background-color: rgb(145,	152,	229);
  transform: translateY(-5px);
}
.project {
  flex-basis: 32%;
  box-shadow: 0 .4rem 1rem rgba(0, 0, 0, .6);
  transition: all .4s;
}
.project:hover {
  transform: scale(1.1);
}
#rsvp {
  height: auto;
  padding: 1rem;
  background-image: radial-gradient(rgb(145,	152,	229),rgb(195, 138, 206));
  display: flex;
  color: #fff;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}
#rsvp p {
  margin-top: 1rem;
}
.contact-container {
  display: flex;
  justify-content: center;
  text-align: center;
}
.icon-container-rsvp {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  margin-left: -1.6rem;
}
.icon-container-rsvp li {
  display: inline-block;
  padding: 0 .8rem 0 .8rem;
}
.text-h2 {
  font-size: 2.6rem;
}

.content {
  display: none;
  height: 100vh;
  width: 100%;
  z-index: 5555;
  background-color: rgba(0, 0, 0, .7);
  position: fixed;
  top: 0;
  left: 0;
  transition: .3s;
}
.content-box {
    background-image: url("images/cash.jpg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    width: 75%;
    height: 70vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }









/*************** Media queries *******************/

@media (max-width: 768px) {
  .navigation__button {
    top: 1.5%;
    right: 2%;
  }
  .navigation__background {
    top: 1.5%;
    right: 2%;
  }

  #about {
    flex-direction: column;
    text-align: center;
  }
  #about > div {
    width: 100%;
    text-align: center;
  }
  .work-container {
    flex-direction: column;
    height: auto;
  }
  #work {
    height: auto;
  }
  .project {
    width: 100%;
    margin-bottom: 1rem;
  }
  .github {
    margin-bottom: 15px;
  }
  .about__skills {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about__skills__list {

    width: 100%;
  }
  #rsvp {
    padding-top: 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;

  }
}
/******** for phones **********/

@media (max-width: 420px) {
  body {
    box-sizing: border-box;
  }
  .navigation__button {
    top: 1.5%;
    right: 4%;

  }
  .navigation__background {
    top: 1.5%;
    right: 4%;
  }
  header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .icon-container {
    padding: 0rem;
  }
  .text-container {
    top: 38%;
  }
  /***** Add to BlueHost ***************/
  .span-container span {
    display: inline-block;
    transition: all .4s ease;
    font-size: 32px;
    font-family: cursive;
    margin-bottom: 1.2rem;
  }
    /***** Add to BlueHost ***************/
#about {
  padding: 0;
}
  .about__skills {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about__skills__list {
    width: 100%;
    padding: 0;
  }
  .work-container {
    margin-top: 1rem;
  }
  .project {
    margin-bottom: 1rem;
  }
  #rsvp {
    padding-top: .3rem;
    padding-bottom: 2rem;
  }
  .contact-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-direction: column;
    padding-top: 4px;
  }
  .text-h2 {
    padding-top: 5px;
  }
  .icon-container-rsvp {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-left: -1.6rem;
  }
  #work {
    margin: auto;
  }
  #work p {
    margin: auto;
  }
  .github {
    margin-bottom: 2rem;
  }
  .work-container {
    justify-content: center;

  }
}
