@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&family=Trirong:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --fuente-principal: 'Playfair Display Variable';
    --fuente-cursiva: 'Playfair Display Variable';
    --color-principal: #727272;
    --color-secundario: #dec9c4;
    --color-detalle: #c9a79f;
    --btn-noAsitire: #C6C6C6;
    --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: #FFB3A6;
}

*{
    margin: 0;
}

body {
    background-image: url('https://firebasestorage.googleapis.com/v0/b/swanmoments-f3801.appspot.com/o/Boda%20Masiel%20y%20Mauricio%2Ffondo.jpg?alt=media&token=3a45a20b-dad8-4a3b-b597-e903a5701d61');
    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: 2rem;
    padding-top: 1rem;
}

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

.btn {
    background: var(--btn-color);
    padding: 0.75rem;
    color: #fff;
    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;
}