* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

#background-emojis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-emoji {
    position: absolute;
    opacity: 0.3;
    animation: float infinite;
    animation-timing-function: linear;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(var(--move-x), var(--move-y)) rotate(var(--rotation));
    }
    66% {
        transform: translate(calc(var(--move-x) * -0.5), calc(var(--move-y) * 2)) rotate(calc(var(--rotation) * 2));
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

header {
    padding: 1rem 2rem;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px);
    padding: 20px;
}

.content {
    max-width: 800px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

p {
    color: #666;
    line-height: 1.6;
    font-size: 18px;
}