 #enterScreen button {
background:none;
border:none;
}
video{
    pointer-events:none;
}
#enterScreen button img{
    width:500px;
    animation:bounce 1s forwards infinite;
}

#enterScreen button:hover {
    cursor: pointer;
}

li.buy a{
    font-size:64px;
    position:relative;
    top:-20px;
    padding:0px 20px;
}
.enterScreenHolder {
    z-index: 99999909;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

nav {
    text-align:center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    position: fixed;
    top: 0%;
    width: 100%;
    z-index: 10;
}
nav h1{
    font-family:Umbrage;
    margin-top: 0px;
    text-align:center;
    color:white;
    font-size:3em;
}

.logo {
    text-align:center;
    margin:0 auto;
    width:400px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}
#contract{
    word-break: break-word;
    display:block;
    padding-top:15px;
    color:white;
    font-size:30px;
    font-family:Arial;
    text-decoration:none;
    font-weight:bold;
}
#contract:hover{
    color:red;
}
nav ul li a {
    font-family:Umbrage;
    color: white;
    text-decoration: none;
    font-size: 36px;
    font-weight:bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: red; /* Gold color for hover effect */
}
.copied{
    display:none;
    background-color:white;
    color:black;
    font-size:48px;
    font-family:Umbrage
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
#overlayVid{
    z-index:999999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

*{
    cursor:none;
}
.cast {
    width: 500px; /* Adjust width as needed */
    height: auto;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 5;
}
#replacePointer,#replacePointer2 {
    display:none;
    position: absolute;
    cursor:none;
    width:100px;
    pointer-events:none;
    z-index:999999999 !important;
}
.soprano {
    width: 250px;
    height: auto;
    display: none;
    transition: transform 2s, top 2s, left 2s;
    position: absolute;
    z-index: 99999;
}

.falling {
    position: absolute;
    width: 150px; /* Adjust size as needed */
    height: auto;
    z-index: 5;
    animation: fall 5s linear forwards; /* Use forwards to maintain the final state */
}
@keyframes bounce {
	0% {transform: scale(1, 1);}
    40% {transform: scale(1.2, 1.2);}
    41% {transform: scale(1.2, 1.2);}
    90% {transform: scale(1, 1);}
	100% {transform: scale(1, 1);}
}
.landed {
    position: absolute;
    width: 160px; /* Adjust size as needed */
    height: auto;
    bottom: 0;
    z-index: 5;
    opacity: 1;
}


audio {
    display: none;
}


@keyframes fall {
    0% {
        top: -100px;
        opacity: 1;
    }
    100% {
        top: calc(100vh - 50px); /* Adjust according to the image height */
        opacity: 1;
    }
}
@media screen and (max-width:600px){
    .cast{
        top:70%;
        width:300px
    }
    .logo,#enterScreen button img{
        width:250px;
    }
    nav{
        padding:0px;
    }
    nav ul li{
        order:2;
    }
    nav ul li.buy{
        font-size:20px;
        order:1 !important;
    }
    nav ul li {
        font-size:18px;
    }
    nav ul li.buy a{
        position:relative;
        top:0px;
    }

    nav ul{
        flex-direction: column;
        display: flex;
    }
    #contract{
        padding:20px;
        font-size:20px;
    }
}
