@import url('https://fonts.googleapis.com/css2?family=Soleil:wght@600&display=swap');

/* Important */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Soleil', sans-serif;
}

:root {
    --rojo: #e00f27;
    --negro: #060506;
    --gris: #a6adbb;
}


body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--negro);
}

a {
    text-decoration: none;
}

/* Body */

.contenedor_p {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 30px;
    flex-direction: column;
    text-align: center;
    gap: 100px;
}

.contenedor_p img{
    width: 280px;
}

.card_home {
    display: flex;
    flex-direction: column;
    width: 400px;
    background-color: #0d0f1c;
    height: auto;
    border-radius: 20px;
    gap: 10px;
    padding: 20px 0;
}

.card_home h1 {
    color: white;
    padding: 20px;
    font-weight: 600;
}

.card_home a {
    align-self: center;
    color: white;
    padding: 15px 30px;
    background-color: #25D366;
    border-radius: 10px;
    font-size: 20px;
}

.card_home p {
    color: var(--gris);
    padding: 30px;
}

.card_home a:hover {
    transform: translateY(2px);
    transition: transform 0.5s ease;
}

.contenedor_p h2 {
    color: var(--gris);
    font-size: 18px;
    font-weight: 600;
}

/* Footer */

footer {
    display: flex;
    width: 100%;
}

/* Responsive */

@media (max-width: 768px) {

}