body{
    background-image: url('../pozadi/uvodniTapetaPC.png');
    margin: auto;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.body1{
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    padding: 100px;
    height: 100%;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nadpis{
    text-align: center;
    color: black;
    font-family: 'Tirto writter';
    font-size: 60px;
    text-shadow: -2px -2px 0 #caeaf1, 2px -2px 0 #caeaf1, -2px 2px 0 #caeaf1, 2px 2px 0 #caeaf1;
}

.mainButtons{
    display: inline-block;
    background-color: #caeaf1;
    border-radius: 35px;
    border: 4px solid black;
    padding: 28px 45px;
    text-align: center;
    font-size: 25px;
    font-family: 'Tirto writter';
    margin-top: 20px;
    color:black !important;
    -webkit-text-fill-color: black !important;
    text-decoration: none !important;
    appearance: none;
}

@media (max-width: 520px) {
    .body1 {
        padding: 50px 15px; /* Menší padding na mobilech */
        flex-direction: column;
    }

    .nadpis {
        font-size: 35px; /* Menší nadpisy pro lepší čitelnost */
        padding-top: 80px;
    }

    .mainButtons{
        font-size: 20px; /* Lehce zmenšené tlačítka */
        padding: 15px 30px;
        margin: 10px;
    }

    body {
        background-image: url("../pozadi/uvodniPozadi.png"); /* Nahraď názvem svého obrázku */
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center center;
    }
}