/* Celkové nastavenie */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

/* Animácia načítania */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hlavný kontajner */
.wrap {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: fadeIn 0.8s ease-in-out;
}

/* Nadpis */
h1 {
    text-align: center;
    color: #2c3e50;
    animation: fadeIn 1s ease-in-out;
}

/* Riadok s obrázkom a tabuľkou */
.row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
    animation: fadeIn 1.2s ease-in-out;
}

/* Obrázok */
.row img {
    width: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Hover efekt na obrázok */
.row img:hover {
    transform: scale(1.05);
}

/* Tabuľka */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    background-color: #3498db;
    color: white;
    padding: 8px;
    transition: background-color 0.3s;
}

th:hover {
    background-color: #2980b9;
}

td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

/* Sekcia */
section {
    margin-top: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

h2 {
    color: #34495e;
}

p {
    line-height: 1.6;
}