body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.gif') no-repeat center center fixed;
    background-size: cover;
    z-index: -1;
}

.corner {
    position: fixed;
    width: 15vw; 
    height: 15vw;
    min-width: 100px;
    min-height: 100px;
    max-width: 300px;
    max-height: 300px;
}

.top-left {
    top: 0;
    left: 0;
}

.top-right {
    top: 0;
    right: 0;
}

.bottom-left {
    bottom: 0;
    left: 0;
}

.bottom-right {
    bottom: 0;
    right: 0;
}

.corner img {
    width: 100%;
    height: 100%;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px #000000;
    max-width: 90%;
    padding: 10px;
    box-sizing: border-box;
}

.content img {
    width: 80%;
    max-width: 300px;
    height: auto;
}

.content p {
    font-size: 2rem;
    margin: 0;
}

.content button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.5rem;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 2px 2px 5px #000;
}

@keyframes floatingText1 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(50vw, -50vh); }
    50% { transform: translate(-50vw, 50vh); }
    75% { transform: translate(50vw, 50vh); }
    100% { transform: translate(0, 0); }
}

@keyframes floatingText2 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-50vw, 50vh); }
    50% { transform: translate(50vw, -50vh); }
    75% { transform: translate(-50vw, -50vh); }
    100% { transform: translate(0, 0); }
}

@keyframes floatingText3 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(50vw, 50vh); }
    50% { transform: translate(-50vw, -50vh); }
    75% { transform: translate(50vw, -50vh); }
    100% { transform: translate(0, 0); }
}

.floating-text {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
