html, body {
    font-family: Verdana, Geneva, Tahoma, sans-serif, Helvetica, Arial, sans-serif;
    background-color: black;
    color: #f4f4f4;
    text-shadow:1px 1px 1px rgba(255, 255, 255, 0.2);
    text-align: center;
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
 ::-webkit-scrollbar {
	width: 0px;
	background: transparent;
	display: none;
} 
.background-container {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.zoom-effect {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(1);
    opacity: 1;
    transition: transform 0.5s ease-out; 
}

#skyrairl {
    position: absolute;
    font-size: 18px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
} 