body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('../img/astrology.jpeg');
    background-size: contain; 
    background-position: center;
    background-attachment: fixed;
}

.container {
    background: black;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    border: 5px solid #5c67f2;
}

h1 {
    color: cyan;
}

p {
    color: cyan;
}

input[type="date"] {
    padding: 0.5rem;
    margin: 1rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 90%;
}

button {
    background-color: #5c67f2;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4a54e1;
}

#horoscope-result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-top: 1px solid #eee;
    text-align: left;
    min-height: 50px;
    color: cyan;
}
