*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: cadetblue;
    margin: 0;
    overflow: hidden;
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

header {
    display: flex;
    flex-direction: column;
    align-items:  center;
}

/*
.fotka {
    text-align: center;
    margin-top: 20px;
    
}

.fotka img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
*/

.fotka {
    width: 200px;
    height: 200px;
    background-image: url(obrazky/11.png);
    background-size: cover;
    border-radius: 50%;
    position:relative;
    transform: scale(5);
    animation: oddialenie 3s ease-out forwards;
    margin-bottom: 20px;
    
}

@keyframes oddialenie {
    from {
        transform: translate(-50%, -50%) scale(9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
} 

.meno {
    text-align: center;
    font-size:xx-large;
    animation: mojemeno 2s ease-out forwards;
    opacity: 0;
    animation-delay: 2s;
    font-weight: bold;
    color: black;
   /* text-shadow: -0.5px -0.5px black, 0.5px -0.5px black, -0.5px 0.5px black, 0.5px 0.5px black;
        obris pisma
   */
}
@keyframes mojemeno {
    from {
        transform: translateY(400px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.obal {
    text-align: center;
    margin-top: 50px;
    
}
.tlacitko {
    
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
    background-color: tomato;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    margin: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    position: relative;
    animation: prichodZhora 2s ease-out forwards;
    opacity: 0;
    animation-delay: 3s;
    
    }
.tlacitko:hover,
.tlacitko:active{
    background-color: orange;
}

@keyframes prichodZhora {
    from {
        transform: translateY(400px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

