@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: block;
  width: 100%;
}

/* NAVBAR COMPONENT >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
#navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  min-height: 10%;
  max-height: 30%;
  flex-wrap: wrap;

  background-color: #222831;
  position: fixed;
  z-index: 5;
}

.nav-title {
  display: inline;
  color: white;
  font-size: 40px;
  font-weight: 400;
}

#version {
  font-size: 1rem;
}

#navbar ul {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  min-width: 35%;
}

#navbar ul li {
  list-style: none;
}

#navbar ul li a {
  text-decoration: none;
  color: white;
  font-size: 25px;
  padding: 1.5rem 3.5rem;
  transition: 0.75s;
}

#navbar ul li a:hover {
  color: #e74c3c;
}

#Contact {
  transition: all 2s ease;
}

/* HERO SECTION >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
#welcome-section {
  background-color: #eeeeee;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 27vh 0;
  flex-direction: row;
  justify-content: space-evenly;
}

#profile-picture {
  height: 18rem;
  width: 18rem;
  border-radius: 50%;
  filter: grayscale(0.6);
  z-index: 0;
}

#welcome-section h1 {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  width: 100%;
  font-size: 40px;
  color: transparent;
  background-image: linear-gradient(#2c3e50, #2c3e50);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: backcolor 2s linear;
  font-size: 50px;
  font-weight: 300;
}

#welcome-section h2 {
  margin-bottom: 1rem;
  color: transparent;
  background-image: linear-gradient(#2c3e50, #2c3e50);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: backcolor 4s linear;
  font-size: 30px;
  font-weight: 300;
}

#welcome-section p {
  width: 50vw;
  font-size: 20px;
  color: #2c3e50;
  animation: blink 2s;
}

@keyframes backcolor {
  0% {
    background-position: -750px 0;
  }
}

@keyframes blink {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(-0px);
  }
}

/* SKILLS SECTION>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#skills-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15rem;
}

#skills-section h1 {
  display: block;
  margin: 2rem auto;
  color: #2c3e50;
  width: 100%;
  text-align: center;
  padding-top: 5rem;
  font-size: 35px;
  font-size: 50px;
  font-weight: 300;
}

.skills-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

/* SKILLS LOGO MODS AND COLORS>>>>>>>>>>>>>>>>>>>>>>>> */
.skills-logo {
  margin: 3rem;
}

.fa-js {
  color: #f0db4f;
}

.fa-python {
  color: #4b8bbe;
}

.fa-css3-alt {
  color: #3c99dc;
}

.fa-html5 {
  color: #f06529;
}

.fa-bootstrap {
  color: #553c7b;
}

.fa-sharp {
  color: #224336;
}

.skills-logo p {
  display: flex;
  justify-content: center;
}

/* PROJECTS SECTION >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#projects {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #bbded6;
}

img {
  width: 100%;
  margin-top: 3rem;
}

#projects h1 {
  display: block;
  color: #2c3e50;
  width: 100%;
  text-align: center;
  padding-top: 5rem;
  font-size: 50px;
  font-weight: 300;
}

.project-tile {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  margin-top: 3rem;
}

.project-tile div {
  width: 30rem;
  padding: 2rem 2rem;
}

.project-tile a {
  text-decoration: none;
}

.project-tile img {
  margin-top: 0;
  height: 14rem;
  width: 26rem;
  background-size: cover;
  border-radius: 0 0 1rem 1rem;
}

.project-tile-name {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e74c3c;
  height: 5vh;
  text-decoration: none;
  color: white;
  border-radius: 1rem 1rem 0 0;
}

.project-tile-info {
  margin-top: 1rem;
  flex-wrap: wrap;
  color: #2c3e50;
}

#button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 2.5rem;
}

#button input {
  width: 6rem;
  height: 2.5rem;
  z-index: 0.1;
}

/* LAST SECTION>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#last-section {
  width: 100%;
  height: 80vh;
  background-color: #eeeeee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-bottom: 3px solid #e74c3c;
}

#last-section h1 {
  display: block;
  text-align: center;
  font-size: 35px;
  color: #2c3e50;
  font-size: 60px;
  font-weight: 300;
}
#last-section p {
  display: block;
  text-align: center;
  padding-top: 1rem;
  color: #2c3e50;
  font-size: 30px;
  font-weight: 200;
}

#social {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 60vw;
  margin: 3rem auto;
}

#social a:hover {
  color: #3c99dc;
}

#social a {
  font-size: 20px;
  text-decoration: none;
  color: #2c3e50;
  padding-top: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  transition-duration: 1s;
}

#profile-link {
  display: flex;
  flex-direction: column;
}

/* FOOTER SECTION>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  height: 10vh;
  background-color: #eeeeee;
}
footer h4 {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SMALLSCREEN SETUP>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
@media screen and (min-width: 400px) {
  footer h4 {
    margin: 1rem 1rem;
  }
  footer {
    height: 20vh;
  }

  #navbar ul li a {
    text-decoration: none;
    font-size: 20px;
    padding: 1.5rem 1rem;
    transition: 0.75s;
  }

  #projects {
    width: 100%;
    height: 100%;
    padding-bottom: 10vh;
  }
}
