body {
    background-color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

:root {
  --header-color: #000000;
  --accent-color: #00eab3;
  --card-bg-dark: rgba(20, 20, 20, 0.6);
}

header {
    color: white;
    background-color: rgb(0, 0, 0);
    height: 55px;
    font-size: 45px;
}

footer {
  padding: 20px;
  background-color: #000000;
  text-align: center;
  border-top: 1px solid #333;
  color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.discord-button {
    position: fixed;
    bottom: 70px;
    right: 0.5rem;
    background-color: #5865F2;
    color: white; 
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.6);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1002;
}

#personalLogo {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  height: 50px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 188, 212, 0.7);
  transition: box-shadow 0.3s ease;
}
 
#personalLogo:hover {
  box-shadow: 0 0 15px rgba(0, 188, 212, 1);
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: var(--header-color);
  color: #00eab3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 10;
  flex-wrap: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: 2px solid rgb(44, 44, 44);
}
 
nav a {
  color: #00eab3;
  text-decoration: none;
  font-size: 18px;
  opacity: 0.8;
  white-space: nowrap;
}
 
nav a:hover {
  opacity: 1;
  color: #00b8b1;
}

nav a:active {
    color: #024a4b;  
}

#aboutP {
  color: white;
}


#about-Div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  margin: 1500px auto 2rem;
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(0, 234, 179, 0.3);
  border-radius: 12px;
  max-width: 1000px;
}

#about-Div p {
  flex: 1 1 300px;
  min-width: 220px;
  margin: 0;
}

@media (max-width: 700px) {
  #about-Div {
    flex-direction: column;
    margin: 2rem auto;
  }
}
 
#about main {
  max-width: 700px;
  width: 90%;
  background: var(--card-bg-dark);
  padding: 2rem 3rem;
  margin-bottom: 4rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.5s ease;
}
 
#about h1 {
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}
 
#about p {
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: white;
}