:root {
  /* --main-color: #3a0a5e; */
  --main-color: "";
  --text-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
}

body {
  color: #555;
  font-size: 1vw;
  position: relative;
}

.container {
  width: 100%;
  overflow: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

.background {
  height: 100vh;
  width: 100vw;
  z-index: -1;
  background-image: url("/assets/background3.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: fixed;
  filter: sepia(100%) hue-rotate(240deg) saturate(200%) brightness(0.3);
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/

/*LINKS*/

.icons-container {
  z-index: 2;
  height: 25%;
  width: 30px;
  position: fixed;
  top: 40%;
  left: 0%;
  text-align: center;
}

.icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  list-style: none;
}

.social {
  font-size: 30px;
  color: #959595;
  transition: font-size 0.2s;
  margin: 20% 0;
}

.social:hover {
  font-size: 40px;
  color: #f0e7e7;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .icons-container {
    height: 10%;
    width: 90%;
    left: 5%;
    top: 0%;
    background-color: var(--main-color);
  }
  .icons {
    flex-direction: row;
    justify-content: space-around;
  }
  .social {
    font-size: 50px;
  }
  .social:hover {
    font-size: 60px;
  }
}

@media only screen and (max-width: 550px) {
  .social {
    font-size: 40px;
  }
  .social:hover {
    font-size: 40px;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/

/*HOME*/

.home-container {
  height: 100vh;
  /* background-color: var(--main-color); */
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 3px solid var(--text-color);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-style-text {
  color: var(--text-color);
  margin-left: 10%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 60%;
}

.hero-1 {
  font-size: 40px;
}

.hero-2 {
  font-size: 60px;
  padding-left: 3%;
}

.hero-3 {
  font-size: 80px;
  padding-left: 7%;
}

.chevron-container {
  margin-top: 5%;
  height: 60px;
  width: 60px;
  text-align: center;
  cursor: pointer;
}

.chevron {
  font-size: 30px;
  animation-name: down-chevron;
  animation-duration: 1.5s;
  position: relative;
  animation-iteration-count: infinite;
}
@keyframes down-chevron {
  0% {
    top: 0%;
  }
  100% {
    top: 30px;
  }
}

@media only screen and (max-width: 800px) {
  .hero-1 {
    font-size: 28px;
  }
  .hero-2 {
    font-size: 46px;
  }
  .hero-3 {
    font-size: 66px;
  }
  .hero-1,
  .hero-2,
  .hero-3 {
    margin-bottom: 4%;
  }
}
@media only screen and (max-width: 600px) {
  .hero-style-text {
    height: 65%;
  }
  .hero-1 {
    font-size: 20px;
  }
  .hero-2 {
    font-size: 40px;
    padding-left: 2%;
  }
  .hero-3 {
    font-size: 60px;
    padding-left: 4%;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/

/*ABOUT ME*/

.about-me-container {
  height: 100vh;
  background-color: var(--main-color);
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 3px solid var(--text-color);
  text-align: center;
  position: relative;
}

.about-me-header {
  width: 100%;
  text-align: center;
  font-size: 3vw;
  margin: 2% 0;
  letter-spacing: 1px;
  padding-top: 32px;
}

.about-me-text {
  width: 100%;
  font-size: 2.3vw;
  margin: 2% 0;
  letter-spacing: 1px;
}

.stack-icons-container {
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: space-around;
  position: absolute;
  bottom: 10%;
}

.stack-icons-container img {
  height: 100%;
  width: 20%;
  transition: all 0.5s;
  stroke: white;
}

.stack-icons-container img:hover {
  transform: translateY(-30px);
  transition-delay: 0.1s;
}

@media only screen and (max-width: 700px) {
  .about-me-container {
    height: 80vh;
  }
}
@media only screen and (max-width: 500px) {
  .about-me-container {
    height: 60vh;
  }
  .about-me-text {
    font-size: 3.4vw;
  }
  .about-me-header {
    margin-bottom: 5%;
    font-size: 4vw;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/

/*PROJECTS*/

.projects-container {
  height: 100vh;
  background-color: var(--main-color);
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 3px solid var(--text-color);
  padding-top: 5%;
}

.projects-header {
  width: 100%;
  text-align: center;
  font-size: 3vw;
  margin: 2% 0;
}
.project-cards-container {
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.project-card {
  text-align: center;
  height: 45%;
  width: 45%;
  cursor: pointer;
  border: 3px solid var(--text-color);
  overflow: hidden;
}

.project-card:hover .project-links-container {
  transform: translate(100%, -100%);
}

.project-card:hover p {
  transform: translate(100%, 100%);
}
.project-card:hover .project-icons-container {
  transform: translate(100%, 100%);
}

.project-card h3 {
  font-size: 2vw;
  height: 20%;
}

.project-card p {
  font-size: 1.8vw;
  height: 40%;
  opacity: 1;
  transition: all 0.4s;
  position: relative;
}

.project-icons-container {
  width: 100%;
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  position: relative;
}
.project-icons-container img {
  height: 70px;
  width: 70px;
  margin: 0 5%;
}

.project-links-container {
  height: 80%;
  width: 100%;
  position: relative;
  left: -100%;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.project-links-container a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1px;
}
.project-links-container a:hover {
  color: black;
  text-decoration: underline;
}

.project-link {
  font-size: 50px;
  margin-right: 3%;
}

/* ************************ */

@media only screen and (max-width: 800px) {
  .projects-container {
    height: 140vh;
  }
  .project-cards-container {
    height: 90%;
    flex-direction: column;
  }
  .project-card {
    height: 20%;
    width: 80%;
  }
  .project-icons-container img {
    height: 50px;
    width: 50px;
  }
  .project-card h3 {
    font-size: 16px;
  }

  .project-card p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 500px) {
  .project-card {
    width: 90%;
    height: 22%;
  }
  .project-card p {
    font-size: 14px;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/

/*CONTACT*/

.contact-container {
  height: 100vh;
  background-color: var(--main-color);
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 3px solid var(--text-color);
}

.contact-form {
  width: 100%;
  height: 75%;
  margin: auto;
  position: relative;
  top: 15%;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
}

.contact-message {
  width: 80%;
  height: 10%;
  color: var(--text-color);
  text-align: center;
  font-size: 5vw;
  margin-top: 1%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.contact-info {
  width: 80%;
  height: 5%;
  font-size: 3vw;
  margin: 3% auto 1%;
  text-align: center;
}

.form-el-1 {
  margin-top: 4%;
  width: 80%;
  height: 5%;
  margin-bottom: 2%;
  margin-left: 10%;
  position: relative;
  font-size: 20px;
  color: black;
  font-weight: 500;
  letter-spacing: 1px;
}

.form-el-2 {
  width: 80%;
  height: 5%;
  margin-bottom: 2%;
  margin-left: 10%;
  position: relative;
  font-size: 20px;
  color: black;
  font-weight: 500;
  letter-spacing: 1px;
}

.form-el-3 {
  width: 80%;
  height: 35%;
  margin-bottom: 1%;
  margin-left: 10%;
  position: relative;
  font-size: 22px;
  color: black;
  resize: none;
  font-weight: 500;
  letter-spacing: 1px;
}

.submit {
  display: block;
  margin-left: 10%;
  width: 15%;
  height: 8%;
  font-size: 20px;
  background-color: var(--main-color);
  color: var(--text-color);
  border: 3px solid var(--text-color);
  border-radius: 5px;
  cursor: pointer;
}

.contact-form-success {
  width: 100%;
  height: 70%;
  margin: auto;
  position: relative;
  top: 15%;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.success-message {
  height: 40%;
  font-size: 3vw;
}

@media only screen and (max-width: 1000px) {
  .submit {
    width: 20vw;
  }
}
@media only screen and (max-width: 500px) {
  .submit {
    width: 25vw;
  }
  .form-el-1,
  .form-el-2,
  .form-el-3 {
    margin-bottom: 4%;
  }
  .contact-info {
    font-size: 4vw;
    margin: 1% auto 4%;
  }
  .contact-form {
    top: 5%;
  }
  .success-message {
    font-size: 6vw;
    text-align: center;
  }
}
