@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: black;
}

.logo {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.nav {
  display: flex;
  gap: 15px;
}

.nav-item {
  padding: 5px 5px;
  border-radius: 5px;
  background: #121212;
  text-decoration: none;
  color: white;
  
  
}

.GPT{
    display: flex;  
    flex-direction: column;     /* Add this line */
    justify-content: center;
    align-items: center;
    padding: 20px; 
    background: #121212;
    gap: 50px;
    width: 100%;
    height: 120vh;
}
.GPT h1{
    color: white;
    font-size: 2.5rem;
    text-align: center;
    padding: 2%;
   
}


.text{
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 70%;
    margin: auto;
    padding: 20px;
    background-color: #191919;
    border-radius: 10px;
    color: white;
    padding: 3%;
    
}

.active{
    padding: 5px 5px;
  border-radius: 5px;
  background: #121212;
  text-decoration: none;
  color: #E26a42;
}