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

body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    color: transparent;
    background-image: linear-gradient(270deg, red, orange, yellow, green, blue, indigo, violet);
    background-size: 400% 400%;
    animation: rainbow 8s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 10px;
}

.description {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    height: 30px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

button {
    background-color: #734486;
    color: black;
    font-size: 20px;
    padding: 15px 0;
    width: 200px;
    border: 1px solid darkgray;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    background-color: #5a3469;
    transform: scale(1.1);
    box-shadow: 0 0 15px 5px rgba(115, 68, 134, 0.7);
}

@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
