
:root{
    --fuente-principal: 'Cormorant Variable';
    --fuente-cursiva: 'Cormorant Variable';
    --color-principal: #733123;
    --color-secundario: #733123;
    --color-detalle: #733123;
    --btn-noAsitire: #daa174;
    --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: #733123;
}

*{
    margin: 0;
}

body {
    background-image: url('https://firebasestorage.googleapis.com/v0/b/swanmoments-f3801.appspot.com/o/Boda%20Aguilar%20Arriola%2Ffondo-06.webp?alt=media&token=000ae728-289b-4a3b-bcf3-5994538dc110');
    background-position: center;
    background-size:cover;
    background-repeat: no-repeat;
    font-family: var(--fuente-principal);
    color: var(--color-principal);
    height: 100vh;
    @media (max-width:786px) {
        height: 100dvh;
        width: 100%;
        background-position: initial;
        
    }
}

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

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

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



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;
    font-family: var(--fuente-principal);
}

textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    font-family: var(--fuente-principal);
    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;
    font-family: var(--fuente-principal);
}

a {
    text-decoration: none;
}