body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background: radial-gradient(circle at center, #1d2b64, #f8cdda); 
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#button-container {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    z-index: 20;
    position: relative;
}

.back-button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fad0c4, #a1c4fd);
    background-size: 300% 300%;
    border: none;
    border-radius: 30px;
    color: #2c3e50;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.back-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

#anim {
    position: absolute;
    right: 10px;
    top: 10px; 
    background: linear-gradient(135deg, #654ea3, #da98b4, #654ea3);
    background-size: 300% 300%;
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: bold;
    font-style: italic;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    width: fit-content;
    z-index: 5;
    border: 2px solid rgba(255,255,255,0.3);
    animation: floatAndGlow 3s ease-in-out infinite alternate, gradientShift 6s ease infinite;
}

@keyframes floatAndGlow {
    from { transform: translateY(0) scale(1); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
    to { transform: translateY(-5px) scale(1.03); box-shadow: 0 12px 25px rgba(101, 78, 163, 0.6); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1 {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 20px;
    z-index: 20;
	 color: beige;
}