﻿html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: rgb(220, 220, 220);
    margin: 0;
}


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Paticka */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 40px;
    background-color: #000;
    font-size: 14px;
}

.footer a {
    color: rgb(220, 220, 220);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
}

/* Responzivní chování */
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
