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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #d5d5bd;
    margin: 0;
    overflow: visible; /* neukaze sa nadbytocny obsah */
    display: flex;
    justify-content: center;
    align-items: center; /* vycentruje zvyslo */
    height: 100vh;
}

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

.fotka {
    overflow: visible;
}


.fotka img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 10px solid black;
    object-fit: cover;

   box-shadow:
    inset 0 0 0 40px white,
    0 0 80px rgba(0, 0, 0, 0.3);


}



@media (max-width: 1000px){
   .fotka img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 10px solid black;
    object-fit: cover;

    box-shadow:
        inset 0 0 0 40px white,
        0 0 80px rgba(0, 0, 0, 0.3);
}

}




.meno {
    margin: 30px;
  color: black; /* klasická zlatá farba */
  /* text-shadow: 1px 1px 0 black; jemný zlatý tieň */
  font-size: 3rem; /* voliteľné zväčšenie textu */
  font-weight: bold; /* zvýraznenie */
}

.menuTlacitko {
    width: 150px;
    height: 40px;
    border-radius: 20px; /* 20% robí ovál, 20px je krajšie */
    display: inline-flex; /* lepšie ako inline-block */
    justify-content: center;
    align-items: center;  /* text presne v strede */
    background-color: rgba(1, 1, 93, 0.97);
    color: white;
    font-size: 16px;
    margin: 20px;
    cursor: pointer;
    text-decoration: none;
}


.menuTlacitko:hover, menuTlacitko:active {
    background-color: orange;
}

