* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
    'Lucida Sans', Arial, sans-serif;
}

body {
  background-color: #000; /* black bckgrnd */
  color: #fff; /*white text */
}

/* === NAVBAR */
nav {
  height: 80px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem calc((100vw - 1300px) / 2);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.logo {
  color: #f3db08;
  font-size: 1.5rem;
  font-weight: bold;
  font-style: italic;
  padding: 0 2rem;
}

nav a {
  text-decoration: none;
  color: #f3db08;
  padding: 0 1.5rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

/* hero*/
.hero {
  background: #000;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 95vh;
  padding: 3rem calc((100vw - 1300px) / 2);
}

.column-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  padding: 0rem 2rem;
}

.column-left h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: #f3db08; 
}

.column-left p {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 1.5;
}

button {
  padding: 1rem 3rem;
  font-size: 1rem;
  border: none;
  color: #000;
  background: #f3db08;
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease;
}

button:hover {
  background: #fff;
  color: #000;
}

.column-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 2rem;
}

.hero-image {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}

/* headings */
h1, h2, h3, h4, h5, h6 {
  color: #f3db08;
  text-align: center;
  margin: 30px 0 15px 0;
}

/* lists/cards */
ul {
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 20px auto;
}

li {
  background: #222; /* card background*/
  color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  line-height: 1.6;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

li a {
  color: #f3db08;
  font-weight: bold;
}

li a:hover {
  color: #fff176; /*hover (yellow)*/
}

/* index pages*/
#index #intro {
  color: #f1dfdf;
  margin-left: 30px; 
}

#practicebtn {
  margin-left: 30px;
}

.background {
  background-color: black;
  -webkit-text-fill-color: blanchedalmond;
}

.promptstyle {
  background-color: #f3db08;
  -webkit-text-fill-color: #e4d44a;
}
