body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    background: linear-gradient(to right, #d36126, #00b7ff);
}

#cat {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    border-radius: 20px;
}

h1 {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

p {
    font-size: 1.5em;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

@keyframes gradient {
    0% { color: #d36126; }
    20% { color: #00b7ff; }
    40% { color: #ff00ff; }
    60% { color: #00ff00; }
    80% { color: #0000ff; }
    100% { color: #ff0000; }
}

.color_text {
    animation: gradient 3s infinite;
}

#home-button {
    background: linear-gradient(to right, #2c1d17, #555757);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.5em;
    cursor: pointer;
    transition: background 0.3s ease;
}

#home-button:hover {
    background: linear-gradient(to right, #555757, #2c1d17);
}

#home-button i {
    margin-right: 5px;
}