body {
    font-family: 'Manrope', sans-serif;
    background-color: hsl(218, 23%, 16%);
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    margin: 0;
    overflow: hidden; 
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(217, 19%, 24%);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 1rem;
    text-align: center;
    width: 90%;
    max-width: 500px;
    margin: 30% 30%; 
    margin: auto; 
}

.card {
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: none; 
    max-width: 400px;
    width: 100%;
    background-color: transparent; 
    border: 2px solid hsl(150, 100%, 66%); 
}

.advice-id {
    color: hsl(150, 100%, 66%);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.advice-text {
    color: hsl(193, 38%, 86%);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1.5rem 0;
    line-height: 1.6;
}

.divider {
    background: url('images/pattern-divider-desktop.svg') no-repeat center;
    height: 16px;
    margin: 1.5rem 0;
}

button {
    background-color: hsl(150, 100%, 66%);
    border: none;
    border-radius: 50%;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    top: 1rem;
}

button:hover {
    background-color: hsl(150, 100%, 80%);
}

button img {
    width: 24px;
    height: 24px;
}

.footer {
    text-align: center;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.9rem;
    width: 100%;
    margin-top: auto;
}

.footer a {
    color: hsl(150, 100%, 66%);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

