/* break to mobile at 836px */
html, body {
  font-size: 100%;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100%;
}

body {
  margin: 0;
  /*background-color: rgb(123, 181, 178); */ /* teal */
  background-color: rgb(133, 196, 146); /* green */
  color: rgb(45, 45, 42);
  font-family: cormorant-garamond, serif;
  font-style: normal;
  font-weight: 300;
}

p {
  font-size: 1.25rem;
}

h1 {
  margin: 0;
  font-size: 4.5rem;
  font-weight: 300;
  white-space: pre-wrap;
}

/*** Main Styles ***/
.header {
  background-color: rgb(133, 196, 146);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.875rem 2.8125rem;
}

.nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upper-wrapper {
  padding: 4rem 3rem 3rem;
  display: flex;
  justify-content: center;
}

.upper-content {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lower {
  background-color: rgb(234, 230, 221);
}

.lower-wrapper {
  padding: 5rem 3rem;
  display: flex;
  justify-content: center;
}

.lower-content {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.projects-content {
  width: 70%;
}

.footer {
  background-color: rgb(45, 45, 42);
  padding: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-text {
  color: rgb(234, 230, 221);
  font-family: great-vibes, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2rem;
}

/*** Upper Content Styles ***/
.title {
  align-self: center;
  white-space: nowrap;
}

.projects-title {
  width: 70%;
  justify-content: left;
}

.title h1 {
  font-size: calc(5rem + 0.8vw);
}

/*** Lower Content Styles ***/
.intro {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.intro-image {
  margin-top: 0.8rem;
  margin-right: 2rem;
}

.img {
  max-width: 100%;
  height: auto;
}

.intro-text {
  width: 50%;
  margin-top: 1rem;
  line-height: 1.5;
}

.intro h2 {
  text-align: left;
  font-size: calc(1.2rem + 0.8vw);
  font-weight: normal;
  margin-top: 0;
}

.intro p {
  text-align: left;
}

h1.home-intro {
  font-family: cormorant-garamond, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
  letter-spacing: normal;
}

.content-wrapper {
  padding: 6.25rem 5.625rem;
}

.content {
  display: flex;
}

.project {
  display: flex;
  gap: 2rem;
}

.project-name {
  width: 33%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-description {
  width: 66%;
  text-align: left;
}

.left {
  width: 50%;
  margin-right: 4.1666%;
  display: flex;
}

.right {
  width: 50%;
  /*margin-left: 4.1666%;*/
  display: flex;
  justify-content: center;
}

.right-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.right-content {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-page p {
  margin: 0;
}

.contact-title p {
  font-size: calc(1.44vw + 1rem);
  margin-left: 10px;
}

/*** Links ***/
a {
  text-decoration: none;
}

a:link, a:visited {
  color: text;
}

a.nav-link {
  font-size: 1.25rem;
}

.nav-home a {
  font-size: 3rem;
  font-family: great-vibes, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.3rem;
  white-space: nowrap;
}

a.contact-link:link, a.contact-link:visited {
  background-color: rgb(45, 45, 42);
  color: rgb(133, 196, 146);
  padding: 1.1rem 1.837rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  line-height: 26px;
  position: relative;
  font-size: 1.125rem;
}

a.contact-link:hover, a.contact-link:active {
  opacity: 0.8;
}

.nav-home {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 1rem;
}

.nav-contact {
  font-size: calc(0vw + 1rem);
}

.current {
  text-decoration: underline;
  text-underline-offset: 1em;
}

/*** Contact Form ***/
form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  grid-template-areas: "name ." "firstname lastname" "firstname-label lastname-label" "email-label email-label" "email email" "subject-label subject-label" "subject subject" "message-label message-label" "message message" "btn .";
}

input, textarea {
  padding: 12px;
  margin: 6px 0 4px;
}

textarea {
  height: 100px;
}

#name-label {
  grid-area: name;
  font-size: 1.125rem;
}

#firstname {
  grid-area: firstname;
}

#lastname {
  grid-area: lastname;
}

#firstname-label {
  grid-area: firstname-label;
  margin-bottom: 24px;
}

#lastname-label {
  grid-area: lastname-label;
  margin-bottom: 24px;
}

.honeypot {
  display: none;
}

#email-label {
  grid-area: email-label;
  font-size: 1.125rem;
}

#email {
  grid-area: email;
  margin-bottom: 24px;
}

#subject-label {
  grid-area: subject-label;
  font-size: 1.125rem;
}

#subject {
  grid-area: subject;
  margin-bottom: 24px;
}

#message-label {
  grid-area: message-label;
  font-size: 1.125rem;
}

#message {
  grid-area: message;
  margin-bottom: 24px;
}

#btn {
  grid-area: btn;
}

#submit {
  background-color: rgb(45, 45, 42);
  color: rgb(133, 196, 146);
  padding: 1.1rem 1.837rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  line-height: 26px;
  position: relative;
  border: none;
  font-size: 1.125rem;
  font-family: cormorant-garamond, serif;
  font-style: normal;
  font-weight: 300;
}

#submit:hover, #submit:active {
  opacity: 0.8;
}

/*** Social Icons ***/
.contact-icons .icon {
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: rgb(45, 45, 42); /*#333;*/
  text-decoration: none;
}

.contact-icons .tooltip {
  position: absolute;
  top: 0;
  line-height: 1.5;
  font-size: 14px;
  white-space: nowrap;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-icons .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-icons .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-icons .icon:hover span,
.contact-icons .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.contact-icons .twitter:hover,
.contact-icons .twitter:hover .tooltip,
.contact-icons .twitter:hover .tooltip::before {
  background-color: #46c1f6;
  color: #ffffff;
}

.contact-icons .github:hover,
.contact-icons .github:hover .tooltip,
.contact-icons .github:hover .tooltip::before {
  background-color: #333333;
  color: #ffffff;
}

.contact-icons .linkedin:hover,
.contact-icons .linkedin:hover .tooltip,
.contact-icons .linkedin:hover .tooltip::before {
  background-color: #2D64BC;
  color: #ffffff;
}

.contact-icons .email:hover,
.contact-icons .email:hover .tooltip,
.contact-icons .email:hover .tooltip::before {
  background-color: #757575;
  color: #ffffff;
}

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