.button-home {
    padding: 10px 15px;
    border: none;
    background: #208bb5;
    color: white;
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button-home:hover {
    background: #208bb5;
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.main_404 {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    text-align: center;
}

h1 {
    color: #208bb5; /* Nahraď $heading příslušnou barvou */
    font-size: 12.5rem;
    letter-spacing: 0.10em;
    margin: 0.025em 0;
    text-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    font-family: "Barlow Condensed", sans-serif;;
}

@media (max-width: 30rem) {
    h1 {
        font-size: 8.5rem;
    }
}

h1 span {
    animation: spooky 2s alternate infinite linear;
    color: #208bb5;
    display: inline-block;
}

h2 {
    color: gray;
    margin-bottom: 0.40em;
}

p {
    color: #ccc;
    margin-top: 0;
}

@keyframes spooky {
    from {
        transform: translateY(0.15em) scaleY(0.95);
    }

    to {
        transform: translateY(-0.15em);
    }
}
