/* CSS Document */
/*
<!-- Kotva na začiatku stránky -->
<div id="hore"></div>
<!-- ... obsah vašej stránky ... -->
<!-- Odkaz na návrat hore -->
<a href="#hore" class="back-to-top">Návrat hore</a>
*/

html {
scroll-behavior: smooth; /* Zabezpečí plynulý posun namiesto skoku */
}

/*
.back-to-top {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
}
*/

.back-to-top {
position: fixed;
bottom: 50px;
right: 30px;
background-color: #333;
color: #fff;
padding: 15px;
border-radius: 50%;
text-decoration: none;
}