@import url('https://fonts.googleapis.com/css2?family=New+Rocker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Germania+One&display=swap');
/* Reset do CSS */
* {
  margin: 0;
  padding: 0;
}

#cee {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-family: 'New Rocker';
  font-size: 40px;
}

/* Configurações gerais */
body {
  display: flex;
  flex-direction: column;
  min-width: 100vh;
}


header {
  background-image: linear-gradient(180deg, #000000 25%, #8c00ff 56%);
  padding: 2rem;
  color: azure;
  font-size: 2rem;
  text-align: center;
  font-family: "New Rocker";
}

main {
  background-image: linear-gradient(359deg, #000000 25%,#8c00ff 100%);
  flex: 1;
  padding: 4.76rem 0.3rem;
  width: 100%;
}


about-section{
  display: block;
  background-color: #ffffff;
  width: 80%;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 0.650rem;
  margin-bottom: 3rem;
   opacity: 0;
    transform: translateY(2rem);

    animation-name: appear;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}

@keyframes appear {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

hobbies {
  display: block;
  background-color: #ffffff;
  width: 80%;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 0.650rem;
  margin-bottom: 3rem;
   opacity: 0;
    transform: translateY(2rem);

    animation-name: appear;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}


#title-about-me {
  background-color: white;
  color: rgb(0, 0, 0);
  width: 80%;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 3rem;
  padding: 3px;
  border-bottom: 3px solid #8c00ff;
}

.text-about-me {
  text-align: left;
  font-size: 2rem;
  background-color: rgb(255, 255, 255);
  color: #000000;
  width: 80%;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#title-hobbies {
  background-color: white;
  color: rgb(0, 0, 0);
  width: 80%;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 3rem;
  padding: 3px;
  border-bottom: 3px solid #8c00ff;
}
.text-hobbies {
  text-align: left;
  font-size: 2rem;
  background-color: rgb(255, 255, 255);
  color: #000000;
  width: 80%;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

ul {
  list-style: none;
  padding: 1rem;
  display: flex;
  gap: 1rem;
}

li {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: white;
  padding: 1rem;  
  border-left: 4px solid black;
  font-size: 1.5rem;
  min-width: 15.63rem;
}

li:hover {
  background-color: #ac80ff;
  transform: translateX(5px);
  transition: all 0.3 ease;
 animation-name: appear;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}