/* General Styling */
body {
    background-color: var(--main-black);
    color: var(--white);
    font-family: 'Gilroy-ExtraBold', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
}

main {
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

h1 {
    color: var(--green);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

h2 {
    color: var(--yellow);
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-in-out;
}

p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
    animation: fadeIn 1s ease-in-out;
}

/* Links */
a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    color: var(--yellow);
}

/* Section Styling */
section {
    padding: 20px;
    background-color: var(--alt-black);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p, ul li {
        font-size: 1rem;
    }
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
}

#profile {
    cursor: pointer;
    display: flex;
    margin-left: 16px;
    background-color: #1b1b1b;
    border-radius: 8px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    height: 17px;
}

#profile:hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:#e8e8de;
}

#profileSVG {
    height: 24px;
    width: 24px;
}

#profile-button {
    color: #e8e8de;
    border-radius: 16px;
    text-align: center;
    font-family: 'Gilroy-ExtraBold';
    margin-left: 8px;
    font-size: 14px;
}

#logo {
    width: 45px;
    cursor: pointer;
}

#buttons {
    display: flex;
    max-height: 31px;
    justify-content: center;
    align-items: center;
}

#checker-button {
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-family: 'Gilroy-ExtraBold';
    background-color: #1b1b1b;
    border: none;
    cursor: pointer;
    color: #e8e8de;
}

#checker-button:hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:#e8e8de;
}