* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tahoma', sans-serif;
}

body {
    background: #f2f2f2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    border-top: 5px solid #ff9900;
    animation: float 3s ease-in-out infinite;
}

.icon {
    font-size: 70px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #333;
}

p {
    font-size: 18px;
    color: #555;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
