/* Reset základních stylů */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5; /* Světle šedé pozadí */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333333; /* Tmavě šedý text */
    position: relative; /* Aby šlo umístit ikonku */
}

/* Kontejner */
#container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 500px;
}

/* Header */
#header img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Hlavní obsah */
#content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Zápatí */
#footer {
    font-size: 0.9em;
    color: #ffffff;
    background-color: #ff6f61;
    padding: 10px;
    border-radius: 0 0 8px 8px;
}

#footer a {
    color: #ffffff;
    text-decoration: none;
}

#footer a:hover {
    text-decoration: underline;
}

/* 🔥 Odkaz na Alchemy vpravo nahoře */
#alchemy-link {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

#alchemy-icon {
    width: 50px; /* Velikost ikony */
    height: auto;
    transition: transform 0.3s ease; /* Animace */
}

#alchemy-icon:hover {
    transform: scale(1.1); /* Mírné zvětšení při najetí */
}
