@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

:root {
  --color60: #032066;
  --color30: #fff;
  --color10: #2cd697;
  --title-font: "Oswald", sans-serif;
  --content-font: "Open Sans", sans-serif;
  --content-margin-left: 3rem;
}

.container {
  display: flex;
  border-color: var(--color30);
}

a {
  text-decoration: inherit;
  color: inherit;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  min-height: 100vh;
  background-color: var(--color60);
}

.avatar {
  margin: 1rem;
  width: 35%;
  border-radius: 50%;
  border: var(--color60) 2px solid;
  outline: var(--color10) 5px solid;
}

.menu-group {
  list-style-type: none;
  font-family: var(--content-font);
  text-align: center;
}

.menu-item,
.menu-item-p {
  color: var(--color30);
  padding: 1rem;
}

.menu-item-p {
  color: var(--color10);
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  margin-left: var(--content-margin-left);
}

.emphasis {
  color: var(--color10);
}

h1 {
  font-family: var(--title-font);
  font-size: 6rem;
  font-weight: 600;
}

h2 {
  font-family: var(--title-font);
  font-size: 1.5rem;
  font-weight: 400;
}

.sobre-mim {
  padding-top: 2rem;
  font-family: var(--content-font);
  font-size: 1rem;
}

.social-row {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  width: 17rem;
  justify-content: space-between;
}

.social-icons {
  display: flex;
  background-color: var(--color10);
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px #23ad7b;
}

.social-icons:active {
  box-shadow: none;
  transform: translateY(5px);
}

.social-button {
  width: 50%;
  height: 50%;
  fill: var(--color30);
  color: var(--color30);
}

@keyframes grow {
  from {
    width: 0;
  }
}

.conhecimentos-group,
.objetivos-group {
  font-family: var(--content-font);
}

.conhecimentos-item,
.objetivos-item {
  margin-bottom: 1rem;
}

.progress-bar {
  display: block;
  width: 10rem;
  height: 1.5rem;
  background-color: var(--color60);
  align-items: baseline;
}

.conhecimento,
.objetivos-item {
  font-size: 1.5rem;
}

.nivel {
  display: block;
  height: 100%;
  background-color: var(--color10);
}

.c1 {
  /* HTML */
  animation-name: grow;
  animation-duration: 1s;
  width: 80%;
}
.c2 {
  /* CSS */
  animation-name: grow;
  animation-duration: 1s;
  width: 60%;
}
.c3 {
  /* JavaScript */
  animation-name: grow;
  animation-duration: 1s;
  width: 40%;
}
.c4 {
  /* Aplicativos para escritório */
  animation-name: grow;
  animation-duration: 1s;
  width: 90%;
}
.c5 {
  /* Frameworks de Desenvolvimento WEB */
  animation-name: grow;
  animation-duration: 1s;
  width: 40%;
}
.c6 {
  /* AdvPl */
  animation-name: grow;
  animation-duration: 1s;
  width: 85%;
}
.c7 {
  /* SQL */
  animation-name: grow;
  animation-duration: 1s;
  width: 75%;
}
