@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background: linear-gradient(to right, #8f66ff, #5e9eff);
    background-size: 500% 100%;
    animation: degrade-animado 2s infinite alternate;
    font-family: "Montserrat", sans-serif;
    font-weight: 200px;
  font-style: normal;
    color: #fff;
  } 

  @keyframes degrade-animado{
    0%{
      background-position-x: 0%;
    }
    100%{
      background-position-x: 100%;
    }
  }
  
  header {
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
    padding: 1em;
    text-align: center;
  }
  
  h1 {
    margin: 0;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #f8f8ff, #ffffff, #f9f9fe, #f7f7ff);
    background-size: 400% 100%;
    animation: degrade 10s linear infinite alternate; 

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
@keyframes degrade{
  0%{
    background-position-x: 0%;
  }
  100%{
    background-position: 400%;
  }
}

nav ul{
  list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
}

nav li {
  margin-right: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition-duration: 0.2s;
}

nav a:hover{
  color:#5e9eff;
  text-shadow: 0, 0, 10 #fff;
  transition: 0.2;
}

  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2em;
  }
  
  
  section {
    background-image: linear-gradient(45deg, #8f66ff, #5e9eff);
    padding: 2em;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  }

  
  h2 {
    margin-top: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 0.5em;
  }

  
  img {
    width: 700px;
    height: 1000px;
    object-fit: cover;
    inset: 0;
    align-items: center;
    text-align: center;
    border-radius: 10px;
  }

  form {
    color: #000;
    text-align: center;
    align-items: center;
    text-decoration: none;
  }

  ::-webkit-scrollbar{
    width: 10px;
  }

  ::-webkit-scrollbar-thumb{
    background-image: linear-gradient(0deg, #8f66ff, #5e9eff);
  }