/* Universal Reset for cleaner spacing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: radial-gradient(circle, rgb(35, 35, 35) 0%, rgb(15, 15, 15) 100%);
    color: aliceblue;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Header Container */
.healing {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 15px 30px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.healing h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(240, 248, 255, 0.6);
}

/* Main Text Section */
.explain {
    max-width: 600px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 4px solid aliceblue;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 0 12px 12px 0;
}

/* Call to Action Section */
.learn_more {
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 10px;
}

/* Styling the actual link to look like a button */
.learn_more a {
    color: rgb(15, 15, 15);
    background-color: aliceblue;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(240, 248, 255, 0.2);
}

/* Hover effect for the button */
.learn_more a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 248, 255, 0.4);
    background-color: #ffffff;
}