body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    height: 100vh;
    margin: 0;
    background-color: hsl(0, 0%, 8%);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

.Contenedor_Principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 400px; 
    background-color: hsl(0, 0%, 12%);
    padding: 2rem;
    border-radius: 12px;
}

img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

h3 {
    color: hsl(0, 0%, 100%);
    margin: 10px 0 5px 0;
}

.Verde {
    margin-bottom: 10px;
    color: hsl(75, 94%, 57%);
}

.Subtitulo {
    color: hsl(0, 0%, 100%);
    margin-bottom: 20px;
}

button {
    width: 100%;
    border-radius: 10px;
    border: none;
    padding: 15px;
    margin: 8px 0;
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
}

@media (max-width: 500px) {
    .Contenedor_Principal {
        width: 90%;
        padding: 1.5rem;
    }

    img {
        width: 80px;
        height: 80px;
    }

    h3 {
        font-size: 1.1rem;
    }

    .Verde,
    .Subtitulo {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
    }
}
