body {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/pexels-kamile-jurgilaite-2156085242-34038422.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: sans-serif;
    opacity: 0;
    animation: bodyFadeIn 1s ease-in forwards;
}

@keyframes bodyFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.welcome-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.word {
    display: inline-block;
    margin: 0 20px;
}

.key {
    display: inline-block;
    padding: 20px 30px;
    margin: 0 5px;
    background-color: #f1f1f1;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 9px #999;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.6em;
    color: #333;
    text-shadow: 1px 1px 1px #fff;
    animation: fall 5s ease-out forwards;
    transform: translateY(-200px);
	position: relative;
	top: 0;
	transition: top ease 0.2s, box-shadow ease 0.2s;
}

.key:active {
	top: 5px;
	box-shadow: 0 4px #999;
}

@keyframes fall {
    0% {
        transform: translateY(-800px) rotateZ(0deg); /* Start much higher, no rotation */
        opacity: 0;
    }
    80% { /* Fall almost to the bottom, rotate */
        transform: translateY(20px) rotateZ(360deg); /* Rotate a full circle */
        opacity: 1;
    }
    100% { /* Settle back, maintain rotation */
        transform: translateY(0) rotateZ(360deg);
        opacity: 1;
    }
}



#address-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    font-family: 'Courier New', Courier, monospace;
}

#address-footer p {
    margin: 5px 0;
}

.time-display {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1em;
    z-index: 100;
}
