@font-face {
    font-family: ArchivoBlack;
    src: url(fonts/ArchivoBlack-Regular.ttf);
}

body {
    background: rgb(30,30,30);
    background: linear-gradient(0deg, rgba(30,30,30,1) 0%, rgba(50,50,50,1) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.uvod img {
    width: 150px;
    transition: transform 0.3s ease;
    
}
.uvod img:hover {
    transform: scale(1.1);
}

.uvod h1 {
    font-family: 'ArchivoBlack';
    color: #ffffff; 
    font-size: 70px;
    font-weight: 600;
    margin-bottom: 15px;
    }

.uvod {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; 
    padding: 18px;
}

.uvod-text h1 {
    font-size: 50px;
    color: #e0e0e0;
    text-align: center;
    margin: 10px 0;
}

.uvod-text {
    text-align: center;
    margin: auto;
    padding: 20px;
    font-size: 25px;
}

.kurzy {
    text-align: center;
    margin: 50px 0;
}

.kurzy a {
    background-image: linear-gradient(to right, #444, #666);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    margin: 20px;
    padding: 15px 30px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease; /* Animácia pri zmene všetkých vlastností */
}

.kurzy a:hover {
    background-image: linear-gradient(to right, #666, #444); 
    transform: scale(1.1);
    font-size: 36px;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 10px 20px;
}

::-webkit-scrollbar {
    width: 0px;
}

/* MOBILNA VERZIA */
@media (max-width: 768px) {
    .uvod h1 {
        font-family: 'ArchivoBlack';
        color: #ffffff; 
        font-size: 45px;
        font-weight: 600;
        margin-bottom: 15px;
        }
    
    .uvod {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center; 
        padding: 18px;
    }
    
    .uvod-text h1 {
        font-size: 35px;
        color: #e0e0e0;
        text-align: center;
        margin: 10px 0;
    }
    
    .uvod-text {
        text-align: center;
        margin: auto;
        padding: 20px;
        font-size: 25px;
    }
    
    .kurzy {
        text-align: center;
        margin: 50px 0;
        display: grid;
    }
    
    .kurzy a {
        background-image: linear-gradient(to right, #444, #666);
        border: 0;
        border-radius: 8px;
        box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 25px;
        margin: 20px;
        padding: 15px 30px;
        text-align: center;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s ease; /* Animácia pri zmene všetkých vlastností */
        width: 50%;
        margin-left: 20%;
    }
}