.message {
    height: 450px;
    background-color: var(--dark);
    border: 2px solid var(--light);
    border-radius: 2rem;
}

.message .content {
    width: 85%;
    height: 100%;
}

.message .m_texts {
    flex-direction: column;
    color: var(--light);
    align-items: flex-start;
    width: 60%;
}

.message .anime {
    height: 100%;
    width: 40%;
}

.message h1 {
    font-size: 45px;
    font-weight: 500;
}

.message h1 span {
    text-decoration: underline;
}

.message p {
    font-size: 25px;
    font-weight: 400;
    margin: 2rem 0;
}

.message button {
    width: 350px;
    height: 70px;
    border-radius: 3rem;
    background-color: var(--purple); 
    color: var(--light);
    font-size: 25px;
    border: none;
    transition: all .3s ease-in-out;
}

.message button:hover {
    background-color: var(--purple-hover);
}


/************************ responsive ************************* */

@media screen and (max-width: 1200px) {
    .message {
        height: 100%;
    }

    .message .content {
        width: 100%;
        height: 100%;
        padding: 2rem;
        align-items: flex-start;
    }

    .message .anime {
        width: 50%;
    }
}

@media screen and (max-width: 640px) {
    .message {
        margin-top: 5rem;
    }

    .message .content {
        flex-direction: column;
        padding: 1.5rem;
    }

    .message button {
        width: 250px;
        height: 50px;
        font-size: 20px;
    }
    
    .message .content .m_texts {
        width: 100%;
    }

    .message .anime {
        width: 100%;
    }
}
    