@media screen and (max-width: 768px) {

    /* Logo kleiner machen */
    .logo img {
        width: 180px;
        height: auto;
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 20px 0;
    }

    .nav li {
        list-style: none;
        margin: 10px 0;
    }

    .nav a {
        font-size: 18px;
    }

    h1 {
        font-size: 32px;
        text-align: center;
        padding: 0 15px;
    }

    h2 {
        font-size: 26px;
        text-align: center;
    }

    .main-content,
    .vote-section {
        padding: 20px 15px;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
    }

    .flex-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .split {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .img {
        max-width: 200px;
        width: 80%;
        height: auto;
    }

    .ticker span {
        font-size: 14px;
    }

    .playercount {
        text-align: center;
        padding: 0 10px;
    }

    .vote-btn {
        width: 100%;
        max-width: 250px;
        padding: 15px;
        font-size: 18px;
    }

    body {
        overflow-x: hidden;
    }
}