@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,700;1,400&family=Maven+Pro:wght@400;500;700&family=Lobster+Two&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 16px;
}

#app {
  width: 85%;
  margin-left: 15%;
}
#app .mobile-menu {
  display: none;
}

@media screen and (max-width: 770px) {
  #app {
    width: 100%;
    margin-left: 0%;
    position: relative;
  }
  #app .mobile-menu {
    display: block;
    position: absolute;
    z-index: 15;
    top: 5px;
    left: 10px;
  }
  #app .mobile-menu #menu-toggle {
    width: 30px;
  }
}
@font-face {
  font-family: "Lora", serif;
  src: url(https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,700;1,400&display=swap);
}
@font-face {
  font-family: "Maven Pro", serif;
  src: url(https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;700&display=swap);
}
@font-face {
  font-family: "Lobster Two", cursive;
  src: url(https://fonts.googleapis.com/css2?family=Lobster+Two&display=swap);
}
nav {
  width: 15vw;
  height: 100vh;
  position: fixed;
  overflow: auto;
  z-index: 20;
  background-color: #706677;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
nav .mobile-toggle {
  display: none;
  position: relative;
}
nav .nav-header {
  margin-top: 5vh;
  text-align: center;
  font-family: "Lobster Two", cursive;
}
nav .nav-header h4 {
  font-family: "Maven Pro", serif;
  font-size: small;
  margin-bottom: 0px;
}
nav .nav-header h1 {
  font-size: xx-large;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #000;
  text-underline-offset: 6px;
  color: #CCB7AE;
  margin-bottom: 0px;
}
nav .nav-header h2 {
  font-weight: 500;
  color: #D6CFCB;
}
nav .links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 30vh;
  width: 100%;
  text-align: center;
  margin-bottom: 50%;
}
nav .links a {
  text-decoration: none;
  color: #000;
  font-size: large;
  font-family: "Maven Pro", serif;
  padding: 20px;
}
nav .links .active, nav .links a:active {
  width: 100%;
  background-color: #A6808C;
  font-weight: 500;
}
nav .links a:hover {
  width: 100%;
  background-color: #565264;
}
nav .nav-footer {
  font-family: "Maven Pro", serif;
  font-size: small;
  text-align: center;
}
nav .nav-footer .social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
nav .nav-footer .social img {
  height: 40px;
}

.visible {
  display: flex;
}

@media screen and (max-width: 770px) {
  nav {
    display: none;
    width: 300px;
  }
  nav .mobile-toggle {
    display: block;
    position: absolute;
    top: 2px;
    right: 4px;
  }
  nav .mobile-toggle span {
    font-size: 35px;
    color: #565264;
    font-family: "Maven Pro", serif;
  }
}
.welcome {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-image: linear-gradient(to right, #706677, #161117);
  --mask:
  radial-gradient(11.18vw at 50% calc(100% - 15.00vw),#000 99%,#0000 101%) calc(50% - 10vw) 0/20vw 100%,
  radial-gradient(11.18vw at 50% calc(100% + 10.00vw),#0000 99%,#000 101%) 50% calc(100% - 5vw)/20vw 100% repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}
.welcome .text {
  z-index: 20;
  text-align: right;
  position: absolute;
  top: 25%;
  right: 2%;
}
.welcome .text #heading, .welcome .text #about {
  display: none;
}
.welcome .text h1 {
  font-family: "Lobster Two", cursive;
  font-size: 13vw;
  color: #A6808C;
}
.welcome .text p {
  font-family: "Lato", serif;
  font-size: 2vw;
  color: #D6CFCB;
}
.welcome .text p .name {
  font-family: "Lobster Two", cursive;
  color: #CCB7AE;
}
.welcome .ball {
  position: absolute;
  border-radius: 100%;
  opacity: 0.5;
  overflow: hidden;
}

@media screen and (max-width: 770px) {
  .welcome {
    height: 70vh;
  }
  .welcome .text {
    top: 20%;
  }
  .welcome .text h1 {
    font-size: 20vw;
  }
  .welcome .text p {
    font-size: 5vw;
  }
}
.about {
  min-height: 50vh;
  width: 80%;
  margin: auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .about-img {
  width: 300px;
  height: 300px;
  border: solid 5px #A6808C;
  border-radius: 50%;
  overflow: hidden;
}
.about .about-img img {
  width: 100%;
}
.about .about-blurb {
  padding: 100px;
  width: 60%;
}
.about .about-blurb h1 {
  font-family: "Lobster Two", cursive;
  color: #A6808C;
}
.about .about-blurb p {
  font-family: "Lora", serif;
}
.about .about-blurb p .fact {
  color: #A6808C;
  font-family: "Lora", serif;
}

@media screen and (max-width: 770px) {
  .about {
    flex-direction: column-reverse;
    width: 95%;
  }
  .about .about-blurb {
    width: 100%;
    padding: 0px;
    padding-top: 100px;
  }
}
.projects {
  min-height: 500px;
}
.projects h1 {
  font-family: "Lobster Two", cursive;
  color: #A6808C;
  text-align: center;
}
.projects .projects-grid {
  width: 70%;
  min-height: 500px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.projects .projects-grid .project {
  width: 40%;
  height: 400px;
  background-color: rgb(255, 255, 255);
  border-color: none;
  border-radius: 20px;
  box-shadow: 5px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  flex-direction: column;
  margin: 25px;
  padding: 10px;
  overflow: hidden;
  position: relative;
}
.projects .projects-grid .project h2 {
  font-family: "Maven Pro", serif;
  color: #565264;
}
.projects .projects-grid .project p {
  font-family: "Lora", serif;
}
.projects .projects-grid .project a {
  text-decoration: none;
  color: #565264;
  font-family: "Lora", serif;
}
.projects .projects-grid .project .project-img {
  position: absolute;
  bottom: -50px;
}
.projects .projects-grid .project .project-img img {
  width: 90%;
}
.projects .view-more {
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.projects .view-more a button {
  border: none;
  background-color: #706677;
  padding: 20px 15px;
  border-radius: 20px;
  text-decoration: none;
  color: #D6CFCB;
  font-size: large;
  cursor: pointer;
}
.projects .project-group {
  width: 80%;
  margin: auto;
  padding: 20px 0px;
}
.projects .project-group .project {
  padding: 20px 0px;
}
.projects .project-group .project .project-text h2 {
  font-family: "Maven Pro", serif;
  color: #565264;
}
.projects .project-group .project .project-text p {
  font-family: "Lora", serif;
}
.projects .project-group .project .project-text a {
  text-decoration: none;
  font-family: "Lora", serif;
  color: #A6808C;
}

#projects {
  background-color: rgb(230, 230, 230);
  padding: 20vh 0em;
  --mask:
  radial-gradient(22.36vh at 50% 30.00vh,#000 99%,#0000 101%) calc(50% - 20vh) 0/40vh 51% repeat-x,
  radial-gradient(22.36vh at 50% -20vh,#0000 99%,#000 101%) 50% 10vh/40vh calc(51% - 10vh) repeat-x,
  radial-gradient(22.36vh at 50% calc(100% - 30.00vh),#000 99%,#0000 101%) calc(50% - 20vh) 100%/40vh 51% repeat-x,
  radial-gradient(22.36vh at 50% calc(100% + 20.00vh),#0000 99%,#000 101%) 50% calc(100% - 10vh)/40vh calc(51% - 10vh) repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}
#projects h1 {
  font-size: 56px;
}

@media screen and (max-width: 770px) {
  .projects .projects-grid {
    width: 60%;
    flex-direction: column;
  }
  .projects .projects-grid .project {
    width: 100%;
    margin: 0px;
    margin-bottom: 25px;
  }
}
.contact {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Maven Pro", serif;
}
.contact .content {
  margin: 50px 0px;
  text-align: center;
}
.contact .content h1 {
  font-family: "Lobster Two", cursive;
  color: #A6808C;
}
.contact .content h3 {
  font-weight: normal;
}
.contact .contact-options {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.contact .contact-options button {
  border: none;
  background-color: #706677;
  padding: 20px 15px;
  border-radius: 20px;
}
.contact .contact-options button a {
  text-decoration: none;
  color: #D6CFCB;
  font-size: large;
}

@media screen and (max-width: 770px) {
  .contact .contact-options {
    width: 80%;
    flex-direction: column;
  }
  .contact .contact-options button {
    margin-bottom: 20px;
  }
}

/*# sourceMappingURL=styles.css.map */
