body {
    background-color: #E8E8E8;
    color: #2D2D2D; 
    font-family: 'Georgia', 'Times New Roman', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    max-width: 500px;
    padding: 40px;
    border: 1px solid #1A5F59; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.container:hover {
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
    border-color: #2D9289; 
}

img {
    max-width: 300px;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    color: #1A5F59;
    text-shadow: none;
}

p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 50px;
    color: #555;
}

.status {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #1A5F59;
    text-transform: uppercase;
    font-weight: bold;
    border-top: 1px solid #1A5F59;
    padding-top: 15px;
}

.windsong-regular {
  font-family: "WindSong", cursive;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 20px;
        box-sizing: border-box;
    }
    img {
        max-width: 200px;
    }
    h1 {
        font-size: 1.5rem;
    }
}
