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

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: 'Poppins', sans-serif;
}

body{
  background-image: url(../assets/imgs/about.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  min-height: 100vh;
}

main{
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#first {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#first h1 {
  color: rgb(13, 13, 162);
}

#texto {
  color: black;
  text-align: center;
  margin-top: 120px;
  backdrop-filter: blur(12px);      
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 42, 255, 0.589);
  max-width: 80%;
  min-height: 80%;
  max-height: 1100px;
  min-height: 500px;
  padding: 10px;
}

#texto h1 {
  font-size: 1.3rem;
  margin-bottom: 7px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 30px;
  color: rgb(0, 0, 0);
}

.linha{
  border-bottom: 3px solid  rgba(106, 106, 254, 0.177);
  width: 50%;
  margin: 0 auto;
}

#texto h2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  width: 80%;
  height: 100px;
  padding: 15px;
   margin: 0 auto 40px auto;
   color: rgb(13, 13, 162);
}

#texto p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8; 
  margin-bottom: 25px;
  text-align: center; 
}

nav{
  width: 100%;
  height: 90px;
  padding: 6px 40px;
  display: flex;
  justify-content: start;
  align-items: center;
}

nav ul{
  display: flex;
  gap: 30px;
}

nav ul li{
  cursor: pointer;
  font-weight: 600;
  transition: .4s;
  font-size: 1.2rem;
}

nav ul li::after{
  content: '';
  display: block;
  width: 10%;
  height: 2px;
  background-color: rgb(99, 99, 180);
  transition: .4s;
}

nav ul li:hover::after{
  width: 80%;
}

nav a {
  color: white;
  text-decoration: none;
}