 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



        body {
            width: 100%;
            height: 100vh;
            background-image:url(hra_vstup.svg);
            background-size: cover;
            background-position: 60% 96.5%;
            
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-family:sans-serif;
            color: black;
            text-align: center;
        }

        h1 {
            font-size: 10rem;
            font-weight: bold;
            margin-bottom: 40px;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
            letter-spacing: 2px;
        }

        h2 {
            font-size: 5rem;
            font-weight: normal;
            margin-bottom: 60px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
            letter-spacing: 1px;
        }

        

        button {
            background-color: #429a8a;
            font-family: 'Jersey 10' ;
            border: 6px solid #2e6859;
            position: absolute;
            border-radius: 5px;
            padding: 1px 20px;
            left: 43%;
            height: 10%;
            width: 15%;
           top: 70%;
            font-size: 4rem;
            font-weight: 900;
            text-shadow: 5px 5px 5px  #2e6859;
            color: #e9571e;
            cursor: pointer;
          
            transition: all 0.3s ease;
        }

        button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px #2e6859;
        }

        button h3 {
            margin: 0;
            padding: 0;
            font-size: 6.8rem;
            font-weight: 900;
        }