@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background-color: #000;
}

#blocker {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

#instructions {
    width: 100%;
    height: 100%;
    display: flex;
    color: rgba(255, 255, 255);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}

#controls {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: -20px;
}

.control-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.control-image {
    width: 50px;
    height: 50px;
}

.control-label {
    margin-top: 1px; /* Reduced margin to bring the text closer to the image */
}

#logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 10vw; /* Adjust the size relative to the viewport width */
    height: auto;
    max-width: 150px; /* Max width to ensure it's not too large */
}

#vr-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 8vh;
    height: 8vh;
    background: none; /* Odstránenie pozadia tlačidla */
    background-image: url('Images/vr.png');
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    max-width: 150px;
}

#vr-button:hover {
    transform: scale(1.1);
}

#home-button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 8vh;
    height: 8vh;
    background: none; /* Odstránenie pozadia tlačidla */
    background-image: url('Images/home.png');
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    max-width: 150px;
}

#home-button:hover {
    transform: scale(1.1);
}


