html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  font-size: 2rem;
}

p {
  margin: 1rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1rem 0 2rem 0;
}

ul {
  list-style: none;
}
ul li {
  cursor: pointer;
}

a {
  color: var(--text);
  text-decoration: none;
}

img {
  max-width: 100%;
}

.hidden {
  display: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
}

img {
  max-height: 100%;
}

.title-small {
  margin-top: 3rem;
  border-bottom: 1px solid #c8c8c8;
  font-size: 1.9rem;
}

.icon-picture {
  height: 50px;
  width: auto;
}

span {
  font-weight: 600;
}

.blue {
  color: var(--dark);
}

.underline {
  text-decoration: underline;
}

.seperate-line-top {
  border-top: 4px solid var(--border);
}

.seperate-line-bottom {
  border-bottom: 4px solid var(--border);
}

.mgtop {
  margin-top: 3rem;
}

.mgleft {
  margin-left: 2rem;
}

.mgbtm {
  margin-bottom: 5rem;
}

.bt {
  border-top: 2px solid var(--border);
}

.block-column-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid #979797;
  padding: 3rem;
  width: 100%;
  height: auto;
}

.flex-start {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.text-align {
  text-align: center;
}

.block-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.opacity {
  animation: opacity 6s infinite normal;
}

.skill {
  width: 100%;
  height: auto;
}

.experience {
  display: flex;
}

:root {
  --font-family: "Raleway", serif, Arial;
  --light: #b1318f;
  --primary: #e9e2a3;
  --dark: #2980b9;
  --text: #333;
  --background: #fafafa;
  --hint: #999;
  --border: #ddd;
}

@keyframes slide-right {
  0% {
    transform: translateX(-100%);
  }
  25% {
    background: rgb(255, 255, 0);
  }
  50% {
    background: rgb(171, 228, 1);
  }
  100% {
    transform: translateX(0);
    background: rgb(94, 255, 0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-40%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  background: linear-gradient(to right, var(--primary), var(--light));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-area: header;
  margin: 1rem;
  max-height: 250px;
}
@media (max-width: 480px) {
  header {
    margin: 0;
  }
}
header h1 {
  font-size: 6rem;
  font-weight: 500;
  max-height: 100%;
  font-family: "Playwrite IN", serif;
  animation: slideDown 3s ease 1 normal;
}
@media (max-width: 480px) {
  header h1 {
    font-size: 4rem;
  }
}
header p {
  font-size: 2rem;
  max-height: 100%;
  letter-spacing: 0.1rem;
  animation: slideDown 10s ease 1 normal;
  font-size: 2rem;
}

.picture {
  grid-area: picture;
  padding: 3rem;
  border-right: 1px solid #ddd;
  background: var(--background);
}
.picture img {
  border-radius: 48%;
}

nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  padding: 1rem;
}
@media (max-width: 480px) {
  nav ul {
    gap: 0;
    padding: 0;
    font-size: 1.5rem;
    text-align: center;
  }
}
nav li {
  display: block;
  align-self: center;
  padding: 1.8rem;
  border-radius: 1rem;
  border: 1px solid white;
  transition: all 600ms;
}
nav li:hover {
  border: 1px solid var(--hint);
  border-radius: 2rem;
  opacity: 0.8;
}

.graybar {
  position: relative;
  width: 100%;
  height: 10px;
  margin: 0 0 5rem 0;
  background: var(--hint);
  overflow: hidden;
}

.grid-container {
  min-height: 100vh;
  display: grid;
  grid: "nav nav" auto "picture header" auto "aside main" 1fr "footer footer" auto/minmax(150px, 300px) 3fr;
}
@media (max-width: 480px) {
  .grid-container {
    grid: "nav" 50px "header" 200px "picture" auto "main" auto "aside" auto "footer" auto/auto;
  }
  .grid-container header p {
    font-size: 0.5rem;
  }
}
@media (max-width: 767px) {
  .grid-container header p {
    font-size: 1.5rem;
  }
  .grid-container .presentation i.fa-github {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .grid-container header p {
    font-size: 1.4rem;
  }
  .grid-container .presentation i.fa-github {
    font-size: 2.5rem;
  }
}
@media (min-width: 980px) {
  .grid-container .presentation i.fa-github {
    font-size: 3.5rem;
  }
}

aside {
  background: var(--background);
  overflow: hidden;
  grid-area: aside;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
aside p {
  margin-bottom: 2rem;
}

.bar-skill-progress-html.animate {
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  background: var(--light);
  animation: slide-right 5s forwards;
}

.bar-skill-progress-scss.animate {
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  background: var(--light);
  animation: slide-right 5s forwards;
}

.bar-skill-progress-javascript.animate {
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  background: var(--light);
  animation: slide-right 5s forwards;
}

.bar-skill-progress-java.animate {
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 5%;
  background: var(--light);
  animation: slide-right 5s forwards;
}

.bar-skill-progress-sql.animate {
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 5%;
  background: var(--light);
  animation: slide-right 5s forwards;
}

.bar-skill-progress-python.animate {
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 5%;
  background: var(--light);
  animation: slide-right 5s forwards;
}

#confirmationMessage {
  background: #59c05d;
  padding: 6px;
  margin: 4px;
  text-align: center;
  border-radius: 5px;
}

main {
  grid-area: main;
  line-height: 6rem;
}
main .block-column-center {
  border-bottom: 0;
}
main .block-column {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: start;
  margin: 0 3rem;
  line-height: 3rem;
  font-size: 1.5rem;
  color: var(--dark);
  justify-content: start;
}
main .block-column h3 {
  text-align: start;
  color: var(--text);
}
main .experience {
  display: grid;
  grid-auto-flow: row;
  line-height: 2.5rem;
  grid: "timeline experience-elem" auto "timeline experience-elem" auto/150px auto;
}
@media (max-width: 480px) {
  main .experience {
    grid: "timeline " auto "experience-elem" auto/auto;
  }
}
main .timeline {
  grid-area: timeline;
  border-right: 1px solid var(--border);
  text-align: center;
  padding: 0 2rem;
  color: var(--hint);
}
main .experience-elem {
  grid-area: experience-elem;
  display: flex;
  align-items: center;
}
main .experience-elem-photo {
  display: flex;
  flex: 1 0 40px;
  max-height: 40px;
  max-width: 40px;
  width: auto;
}
@media (max-width: 480px) {
  main .experience-elem-photo {
    margin: 0rem;
  }
}
main .experience-elem-photo img {
  height: 100%;
  width: auto;
  padding: 0.4rem;
}
main .experience-elem p {
  font-size: 1.8rem;
}
main .experience-elem .block-tittle {
  display: flex;
  flex-direction: column;
}

.personnel {
  border-top: 1px solid var(--border);
}
.personnel-photo {
  height: 40px;
  width: auto;
}
.personnel-elem {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.personnel img {
  height: 100%;
  width: auto;
}

footer {
  grid-area: footer;
  background-color: var(--text);
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 5rem;
}
footer h3 {
  color: white;
  font-size: 2rem;
  letter-spacing: 0.6rem;
}
@media (max-width: 480px) {
  footer h3 {
    font-size: 1.8rem;
  }
}
footer form {
  display: flex;
  align-items: center;
}
footer form .prefix,
footer form .postfix {
  background: linear-gradient(to left, var(--dark), var(--light));
  color: white;
  font-size: 2rem;
  padding: 1rem 2rem;
}
footer form .prefix {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
footer form button {
  background: var(--text);
  border: 0;
  transition: all 300ms;
}
footer form button .postfix {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
footer form button:hover {
  cursor: pointer;
  opacity: 0.7;
}
footer form input {
  outline: none;
  border: 0;
  padding: 1rem 0.5rem;
  line-height: 2rem;
  min-width: 300px;
}
@media (max-width: 480px) {
  footer form input {
    min-width: 200px;
  }
}
footer form input::placeholder {
  color: var(--text);
  font-size: 1.5rem;
}

/*# sourceMappingURL=style.css.map */
