/* GLOBAL STYLES */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 2.5rem;
}

li,
button,
label,
p,
a {
  font-size: 2.5rem;
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 2.5rem;
}

h4,
h5 {
  font-size: 2rem;
}

a {
  text-decoration: none;
  color: #2c2c2c;
}

ul {
  list-style: none;
}

.main-head {
  width: 95%;
  margin: 0 0 0 auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  min-height: 10vh;
  width: 60%;
  flex-wrap: wrap;
}
nav #logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex: 1 1 10rem;
}
nav #logo h1 {
  margin: 2rem;
}
nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex: 1 1 40rem;
}

.intro {
  min-height: 90vh;
  width: 90%;
  margin: auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.intro h2 {
  display: inline-block;
  font-size: 8rem;
  padding: 2rem 0 0 0;
  background: linear-gradient(left, #38d39f, #38a4d3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro h3 {
  font-size: 6rem;
  padding: 2rem 0;
}
.intro p {
  padding: 2rem 0;
  color: #2c2c2c;
}

.splash {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}

.intro-social {
  margin: 4rem 0 0 0;
}
.intro-social a {
  margin-right: 5rem;
}

.active {
  background: #2c2c2c;
  color: #fff;
  border-radius: 2rem;
  padding: 1rem 3rem;
}

.intro-text,
.intro-images {
  flex: 1 1 40rem;
}

#plant-left {
  animation: plant 1.5s ease infinite alternate;
}

#plant-right {
  animation: plant 1.5s ease infinite alternate 0.5s;
}

#me {
  animation: me 1s ease-in-out infinite alternate;
  transform-origin: bottom;
}

#clock-arrow {
  animation: clock 1.5s infinite linear;
  transform-origin: bottom;
  transform-box: fill-box;
}

@keyframes plant {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-30%);
  }
}
@keyframes me {
  from {
    transform: rotateZ(-10deg);
  }
  to {
    transform: rotateZ(5deg);
  }
}
@keyframes clock {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
nav {
  width: 100%;
}

.projects {
  width: 90%;
  margin: auto;
  min-height: 90vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  text-align: center;
  flex-wrap: wrap;
}
.projects h2 {
  margin: 5rem;
}

.project {
  flex: 1 1 40rem;
  margin: 0 0 3rem 0;
}

.form-section {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 3rem;
}
.form-section form {
  padding: 3rem 10rem;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 2rem;
}
.form-section form input,
.form-section form textarea {
  margin: 2rem;
}
.form-section form input:focus,
.form-section form textarea:focus {
  outline: 2px solid #000;
}
.form-section form #name,
.form-section form #email {
  font-size: 2rem;
  padding: 1rem;
  font-size: 2rem;
}
.form-section form textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  resize: none;
}
.form-section form button {
  width: 100%;
  padding: 2rem;
  background: #154353;
  color: #fff;
}
.form-section form button:focus {
  background: rgb(29, 71, 148);
}

footer {
  background: #154353;
  color: #fff;
  min-height: 10vh;
  padding: 0.5rem 5%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
footer ul {
  flex: 1 1 40rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}
footer h4 {
  flex: 1 1 40rem;
}

@media screen and (max-width: 754px) {
  html {
    font-size: 45%;
  }
  svg {
    height: 60%;
  }
  .main-head {
    width: 100%;
  }
  nav #logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1 1 20rem;
    margin: 2rem 0 0 0;
  }
  nav ul {
    flex: 1 1 60rem;
    margin: 2rem 0;
  }
  .intro-text {
    margin: 5rem 0 0 0;
    text-align: center;
  }
  .intro-images {
    text-align: center;
  }
  .intro-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .intro-social a {
    margin: 2rem;
  }
  .project {
    flex: 1 1 50rem;
  }
  .project img {
    width: 100%;
    height: 100%;
  }
  form {
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1332px) {
  html {
    font-size: 53%;
  }
  .splash {
    display: none;
  }
  svg {
    width: 80%;
  }
  nav {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */