@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Parisienne&display=swap');

:root{
    --fuente-principal: 'Cormorant';
    --fuente-cursiva: 'Parisienne';
    --color-principal: #263760;
    --color-secundario: #263760;
    --color-detalle: #c9a79f;
    --btn-noAsitire: #7a7c7c;
    --btn-shadow: rgba(0 0 0 / 20%) 2px 5px 18px -1px, rgba(0 0 0 / 15%) 2px 2px 10px -3px;
    --btn-shadow-hover: rgba(0 0 0 / 35%) 2px 5px 18px -1px, rgba(0 0 0 / 30%) 2px 2px 10px -3px;
    --btn-shadow-active: rgba(0 0 0 / 50%) 2px 5px 18px -1px, rgba(0 0 0 / 45%) 2px 2px 10px -3px;
    --btn-color: #263760;
}

*{
    margin: 0;
}

body {
    background-image: url('https://firebasestorage.googleapis.com/v0/b/swanmoments-f3801.appspot.com/o/Boda%20Rivera%20Romero%2Ffondo.jpg?alt=media&token=0635fd5e-8fa7-47c4-9a74-a44a0c1f8023');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: var(--fuente-principal);
    color: var(--color-principal);
    height: 100dvh;

    @media (max-width: 786px) {
        height: 100dvh;
        width: 100%;
        background-position: initial;
    }

    
}

#app {
    display: grid;
    place-items: center;
    row-gap: 2rem;
    padding-top: 2.2rem;
}

h1, h2, h3, h4, h5, h6{
    text-align: center;
}

.btn {
    background: var(--btn-color);
    padding: 0.75rem;
    color: #fff;
    border-radius: 6px;
}

input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.selectForm {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}