/* Default light mode */
body {
  background-color: #ffffff;
  color: #111;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-height: 100vh;
  padding:0px;
}

/* Dark mode */
body.dark-mode {
  background: linear-gradient(to bottom, #1c1c1c, #161616);
  color: #f0f0f0;
}

/* Typography */
.custom-full h1{
    color:#333;
}
body.dark-mode .custom-full h1{
    color:#fff;
}
.custom-full h2{
    color:#333;
}
body.dark-mode .custom-full h2{
    color:#fff;
}
.custom-full h3{
    color:#333;
}
body.dark-mode .custom-full h3{
    color:#fff;
}
.custom-full h4{
    color:#333;
}
body.dark-mode .custom-full h4{
    color:#fff;
}
.custom-full h5{
    color:#333;
}
body.dark-mode .custom-full h5{
    color:#fff;
}