/* Styles for index.html */
.index-body {
    margin: 0;
    font-family: sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.index-body h1 {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.slap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: clamp(3rem, 20vw, 10rem); /* responsive font size */
    font-weight: bold;
    text-shadow:
            2px 0 black,
            -2px 0 black,
            0 2px black,
            0 -2px black,
            1px 1px black,
            -1px -1px black,
            1px -1px black,
            -1px 1px black;
    line-height: 1;
}

.slap > div {
    margin: 0.2em 0;
}

.slap-apps {
    color: #ff71ce;
}

.slap-that {
    color: #01cdfe;
}

.slap-slap {
    color: #05ffa1;
}

/* Navigation button styles */
.navigation {
    margin-top: 2rem;
    text-align: center;
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #004c99;
}
