body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ffafbd, #ffc3a0);
    color: #333;
}

.container {
    text-align: center;
}

h1 {
    font-size: 10rem;
    margin: 0;
    color: #ff6f61;
    animation: fadeIn 1.5s ease-in-out;
}

p {
    font-size: 1.5rem;
    margin: 20px 0;
    animation: fadeIn 2s ease-in-out;
}

.home-link {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #ff6f61;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-link:hover {
    background-color: #ff4e42;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
