section.content-modal {
    position: fixed;
    top: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100vh;
    margin: auto;
    color: var(--gray-text);
}

section.content-modal span {
    color: var(--orange);
    font-size: 10rem;
}

section.content-modal h1 {
    font-size: 2.5rem;
}

section.content-modal p {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

section.content-modal button {
    font-size: 1.5rem;
    background: var(--purple-text);
    color: white;
    margin-top: 1rem;
    border: none;
    padding: 0.8rem 3rem;
    border-radius: 20px;
    transition: filter 0.3s;
}

section.content-modal button:hover {
    filter: brightness(0.8);
}

section.content-modal.active {
    display: flex;
}