@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: #121212;
  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;
  
  
}


.active{
    padding: 5px 5px;
  border-radius: 5px;
  background: #121212;
  text-decoration: none;
  color: #E26a42;
}


.heading{
    font-size: 2rem;
    text-align: center;
    margin: 20px 0;
    color: white;
}
.line{
    width: 33%;  /* Changing this is like an aniamtion will have to mess around with this in the future */
    height: 4px;
    background-color: #E26a42;
    margin: 20px 0;
    margin:  auto;
    border-radius: 12px;
    transition: 2s;
    
    
}


.tutorial{
    width: 100%;
    height: 100vh;
    background-color: #121212;
}

.intro-text{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(41, 41, 41);
    width: 80%;
    margin: 25px auto;
    padding: 2.5%;  
    border-radius: 7px;

}
.intro-text p {
    font-size: 1.1rem;
    text-align: center;
  
}

.GPT{
  width: 80%;
  height: 60vh;
  background-color: grey;
  margin: auto;
}

.GPT video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  
}