body {
    background-color: #121212;
    color: #e0e0e0;
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

.header-section {
    text-align: center;
    margin-bottom: 50px;
}

.header-section h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.header-section p {
    font-size: 1.2rem;
    color: #bbb;
}

.about-section {
    text-align: center;
    margin-bottom: 50px;
}

.about-section p {
    font-size: 1.2rem;
    color: #bbb;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    color: #aaa;
    position: relative;
    width: 100vw;
    margin-top: auto;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    color: #aaa;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;
}

.link-navbar:hover {
    color: #ccc;
}

.text-link {
    position: relative;
    color: #00bfff;
    text-decoration: none;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #00bfff;
    transition: width 0.3s;
}

.text-link:hover::after {
    width: 100%;
}

.link-row,
.kofi-wrapper {
    flex-basis: 100%;
}

.icon-group {
    display: flex;
    gap: 16px;
}

.icon-link {
    color: #e0e0e0;
    font-size: 2.0rem;
}

.icon-link:hover {
    color: #fff;
}

.link-section a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.link-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.github-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.github-btn {
    display: flex;
    justify-content: center;
    background-color: #24292e;
    color: #e1e1e1;
    padding: 5px 10px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.github-btn:hover {
    background-color: #2c3136;
}