@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Rowdies&display=swap');

:root {
  --primary-color: #5B4B8A;
  --primary-color-dark: #371B58;
  --accent-color: #FFF8F0;
  --sombra: #EE81B3;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
}
/**Menu*/
.navbar {
  position: fixed;
  width: 100%;
  background-color: var(--primary-color-dark);
  z-index: 1;
}

.menu {
  list-style: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--accent-color);
  text-align: center;
}

.menu-item {
  display: inline-block;
  padding: 20px;
  transition: 1s;
}

.menu-item a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color-dark);
  border-radius: 6px;
}

.menu-item a {
  padding: 20px;
  text-decoration: none;
  color: var(--accent-color);
  font-size: 18px;
  letter-spacing: 2px;
  transition: all 1s;
}

.logo {
  text-decoration: none;
  position: fixed;
  float: left;
  margin: 16px 36px;
  color: var(--accent-color);
  font-size: 24px;
  font-weight: bold;
}
/**Section :Home*/
.content {
  display: flex;
  height: 100vh;
  width: 100%;
  flex-direction: row;
}
.half-section {
  width: 50%;
  background-color: var(--accent-color);
}
.introduction {
  display:flex;
  justify-content:center;
  flex-direction: column;
}
.avatar-container img {
  width:100%;
  height:100%;
}

.title {
  font-weight: 800;
  font-size:3em;
  color: var(--accent-color);
  text-transform: uppercase;
  text-align: center;
  text-shadow: 3px 3px var(--sombra);
}

.socials {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.socials-icon {
  font-size: 30px;
  text-decoration: none;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 6px;
  background-color: var(--primary-color-dark);
  padding: 2%;
}
.description{
  text-align:center;
}
/**Section: About*/
.text-section {
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.title-section {
  display: flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--primary-color-dark);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 40px;
  text-shadow: 7px 7px var(--sombra);
}
/**Section: proyects*/
.project-list li{
  list-style: none;
  margin-bottom: 30px;
}
.project-link {
  text-decoration: none;
  color: var(--accent-color);
  font-style: italic;
}

aside {
  padding-left: 100px;
  padding-right: 100px;
}
/**Section: Contact*/
form {
  display: flex;
  flex-direction: column;
  margin-left: 80px;
  margin-right: 80px;
}

.input-field {
  background-color: var(--accent-color);
  font: inherit;
  font-size: 1.125rem;
  padding: .25rem 0;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 6px;
}

.input-field:focus {
  outline: 0;
  border-bottom-width: 3px;
}

.btn-send-message {
  margin-top: 10px;
  padding: 10px;
  font-size: 20px;
  background-color: var(--accent-color);
  border-radius: 4px;
  cursor: pointer;
  transition: all 250ms;
  color: var(--primary-color-dark);
}

.btn-send-message:hover,
.btn-send-message:focus {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

footer {
  display: flex;
  flex-direction: column;
  background-color: var(--primary-color-dark);
  color: var(--accent-color);

}

.footer-section-container {
  display: flex;
  justify-content: center;
}

.footer-link {
  text-decoration: none;
  color: var(--accent-color);
  font-size: 18px;
}

.wrapedText {
  white-space: pre-line;
  text-align: start;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.0;
}
form{
  background-color: var( --primary-color-dark);
  border-radius: 6px;
  padding: 4%;
}

.tech-icons-container {
  background-color: rgba(255, 255, 255, 0.801);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  }
  .tech-icon-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0px 60px;
  }
  .tech-icon-list-end {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  }
  .tech-icon-item {
    display: flex;
    flex-direction: column;
    margin-right: 80px;
    margin-bottom: 80px;
    align-items: center;
    }
    .tech-icon-item-end {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    align-items: center;
    }
    span {
    margin-top: 5px;
    color: var(--primary-color-dark);
  }