<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

.container {
    text-align: center;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.container span {
    color: white;
    text-transform: uppercase;
    display: block;
}

.text1 {
    color: white;
    font-size: 95px;
    font-weight: 700;
    letter-spacing: 14px;
    margin-bottom: 35px;
    position: relative;
    animation: text 3s 1;    
}

.text2 {
    font-size: 30px;
    color: white;
}

body {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e2a40;
}

@keyframes text {
    0% {
        color: black;
        margin-bottom: -40px;
    }
    85% {
        letter-spacing: 8px;
        margin-bottom: -40px;
    }
}

#button {
    background: white;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#button:hover .fa-arrow-down {
    animation: do 1.5s none ease-in-out infinite;
}

.fa-arrow-down {
    color: #1e2a40;
    transform: rotate(-70deg);
    font-size: 192px;
}

</pre></body></html>