
body {
    -webkit-user-select: none;
    margin: 0;
}

a{
    text-decoration: none;
}

:root {
    --homeBackground: #afafaf;
    --homeTxtColor: #000;
    --homeTlacitka: #989898;
    --homeTlacitkaHover: #858585;
    --homeTlacitkaTxt: #000;
}

.dark-mode {
    --homeBackground: #121212;
    --homeTxtColor: #fff;
    --homeTlacitka: #1e1e1e;
    --homeTlacitkaHover: #0c0c0c;
    --homeTlacitkaTxt: #fff;
}

.uvod{
    position: absolute;
    background-color: var(--homeBackground);
    border: none;
    height: 100%;
    width: 100%;
    z-index: 3;
    color: var(--homeTxtColor);
    text-align: center;
}

.UvodTlacitko{
    align-content: center;
    height: 115px;
    width: 115px;
    box-shadow: 4px 5px 4px 0 rgba(67, 83, 89, 0.65);
    background-color: var(--homeTlacitka);
    font-size: 20px;
    color: var(--homeTlacitkaTxt);
    border-radius: 15%;
    transition: all 0.3s ease;
    margin-top: 17px;
}

.UvodTlacitko:hover{
    margin-top: 0;
    background-color: var(--homeTlacitkaHover);
}



/*
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #2a4365;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #4299e1;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #3182ce;
}

.container {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 */
