body {
    background-color: #2D0D47; /* Dark purple */
    color: #39FF14; /* Bright green */
    font-family: 'bitter', serif;
    text-align: left !important;
}

h1, .title {
    font-family: 'Shrikhand', cursive;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

nav a {
    text-decoration: none;
    color: #39FF14;
    font-size: 18px;
}

.turtle-icon img {
    width: 80px;
    margin-top: 20px;
}

.contact-info {
    margin-left: 0; /* Push it fully left */
    width: 100%; /* Ensure full width */
    max-width: none; /* Prevent restrictions */
}

.contact-info p {
    font-size: 35px !important; 
}

.contact-info ul {
    font-size: 35px !important;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 5px 0;
}

footer {
    margin-top: 30px;
    padding: 10px;
    font-size: 14px;
}

.custom-underline {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-decoration-color: currentColor; /* or replace with a specific color */
}