:root{
  --title-font: poppins;
  --title-weight: 600;
  --text-weight: 500;
  --body-color: #0F1624;
}

.flex{
  display: flex;
}

.title{
  font-family: var(--title-font);
  font-weight: var(--title-weight);
}

.icons_container{
  gap: 10px;
}

.icon{
  font-size: 24px;
  transition: 0.3s;
}

.icon:hover{
  transform: scale(1.1);
}

html{
  scroll-behavior: smooth;
}

body{
  width: 100%;
  background-color: var(--body-color);
}

/* Header */

header{
  padding: 8px 10px;
  width: 100%;
  font-family: var(--title-font);
  font-weight: var(--text-weight);
  background-color: var(--body-color);
  justify-content: space-around;
  align-items: center;
  position: sticky;
  top: 0;
}

#header_title{
  font-size: 36px;
  line-height: 54px;
}

.menu_links{
  gap: 40px;
}

.menu_links > li > a:hover{
  text-decoration: underline;
}

/* Profile */

.profile{
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 100px;
}

.left_profile{
  width: 40%;
  flex-direction: column;
  font-family: var(--title-font);
  padding: 40px 5px 5px 0px;
}

.left_profile > h1{
  font-size: 32px;
  font-weight: var(--title-weight);
  background: -webkit-linear-gradient(30deg, #945DD6 30% , #6978D1, #13ADC7 60%);
  background-clip: text;
  line-height: 35px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.left_profile > p{
  width: 100%;
  font-weight: var(--text-weight);
  font-size: 12px;
  color: #fdfdfd;
  margin-bottom: 10px;
}

.left_profile_button button{
  height: 36px;
  width: 96px;
  cursor: pointer;
  border: none;
  font-size: 12px;
  background: linear-gradient(270deg, #13ADC7 0%, #6978D1 66.67%, #945DD6 100%);
  box-shadow: 0px 10px 30px rgba(0, 178, 255, 0.35);
  border-radius: 60px;
}

.right_profile{
  width: 40%;
  position: relative;
}

.profile_img{
  position: absolute;
  top: 0;
  left: 175px;
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background-image: url(../assets/foto_ian.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

#circle_img{
  position: absolute;
  top: 120px;
  left: 250px;
  z-index: -2;
  width: 150px;
}

#aurea_img{
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -3;
  width: 300px;
}

/* About */

.about_content{
  border-left: 4px solid #945DD6;
  padding: 0 10px;
  margin-bottom: 50px;
}

.about_content > p{
  font-family: var(--text-weight);
  font-family: var(--title-font);
  font-size: 12px;
  color: #929EB0;
  max-width: 500px;
  margin: 0 auto 10px auto;
}

/* Tech */

.tech_wrapper{
  justify-content: space-around;
  max-width: 500px;
  margin: auto;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 50px;
}

.about,
.technologies,
.projects{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.title{
  padding-bottom: 30px;
  margin-top: 50px;
}

.card{
  width: 100px;
  height: 100px;
  background-color: #1B1D21;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tech_icon{
  width: 50px;
  height: 50px;
  font-size: 50px;
  margin-bottom: 5px;
}

.tech_name{
  font-weight: var(--text-weight);
  font-size: 16px;
}

/* Projects */

.projects_wrapper
{
  display: flex;
  flex-direction: column;
  width: 500px;
  margin: auto;
  gap: 20px;
  font-family: Poppins;
}

.project_card{
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}

.project_img{
  max-width: 300px;
  max-height: 200px;
}

.project_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 3px 10px 20px #13acc741;
}

.project_content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px 20px;
}

.project_content h2{
  color: #945DD6;
  text-align: left;
  font-size: 20px;
  padding-bottom: 5px;
}

.project_content p{
  text-align: left;
  font-size: 12px;
  padding-bottom: 10px;
}

.project_icons{
  display: flex;
  gap: 15px;
}

.project_icons i{
  font-size: 36px;
}

.project_content a{
  color: #2B32E8;
  font-size: 16px;
  text-align: left;
}

/* Footer */

footer{
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

#footer_title{
  font-size: 16px;
  font-weight: var(--text-weight);
  font-family: var(--title-font);
}

.footer_icons{
  position: absolute;
  right: 5%;
}

@media (max-width: 920px) {

  body{
    background-color: red;
  }

  .profile{
    flex-direction: column;
  }
  
}