body {
    background: linear-gradient(to right, #13183e, #1c1c1e);
    color: #ddd;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow-y: auto;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1c1c1e;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

nav {
    background: linear-gradient(to right, #13183e, #3a3a3c);
    padding: 0.2em;
    width: 100%;
    position: fixed;
    top: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 1em;
}

nav ul li a {
    color: #ddd;
    text-decoration: none;
}

header {
    text-align: center;
    margin: 2em 0;
}

button {
    background: linear-gradient(to right, #13183e, #3a3a3c);
    color: #ddd;
    border: none;
    padding: 1em 2em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

button:hover {
    background: linear-gradient(to right, #3a3a3c, #13183e);
}
footer {
    background: linear-gradient(to right, #13183e, #3a3a3c);
    padding: 0.2em;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media screen and (max-width: 600px) {
    body {
        font-size: 18px;
    }

    button {
        font-size: 20px;
    }
}



#jokes-section {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 30%; /* adjust as needed */
}

.joke-box {
    background: linear-gradient(to right, #13183e, #3a3a3c);
    color: #ddd;
    border: none;
    padding: 1em 2em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 10px;
    max-width: 80%;
    word-wrap: break-word;
}



#meme-img {
    max-width: 100%;
    height: auto;
}

