/* styles.css */

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #282c34;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

h1 {
    color: #61dafb;
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 3px;
}

.container {
    position: relative;
    width: 500px;
    height: 300px;
    max-width: 90vw;
    max-height: 80vh;
    border: 5px solid #61dafb;
    /* Modrý rámeček */
    border-radius: 15px;
    background-color: #1c1f26;
    overflow: hidden;
}

.floating-word {
    position: absolute;
    font-size: 3rem;
    font-weight: bold;
    color: #61dafb;
    transition: transform 0.3s, font-size 0.3s;
    white-space: nowrap;
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 5px;
}

.floating-word a {
    text-decoration: none;
    color: inherit;
}

.floating-word:hover {
    transform: scale(1.5);
    font-size: 4rem;
}

#wordRoman {
    left: 10%;
    top: 10%;
}

#wordSlivka {
    left: 80%;
    top: 80%;
}