/* Variables */
:root{
    /* Fuentes */
    --main-font: 'Great Vibes', cursive;
    --sec-font: 'Merriweater';
    --base-font: 'News Cycle', sans-serif;
    --default-font: 'Lato', sans-serif;
    /*Lato en 300, 400 y 700*/

    /* Colores */
    --main-color: rgb(255, 0, 149);
    --sec-color: rgb(255, 61, 210);
}

html{
    font-family: var(--base-font);
}

h1{
    font-family: var(--main-font);
    font-size: 36pt;
    letter-spacing: 0.25em;
    color: var(--main-color);
}

h2{
    font-family: var(--sec-font);
    font-size: 30pt;
    font-weight: 500;
}

img{
    max-width: 550px;
    max-height: 550px;
}

a{
    text-decoration: none;
    color: white;
}

.back-image{
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.container{
    align-items: center;
    justify-content: center;
    display: flex;
    background-size: cover;
    background-position: center;
    text-align: center;
    width: 100%;
}

.content{   
    text-align: center;
    align-items: center;
    justify-content: center;
/*    width: 90%;*/
/*    border: solid 1pt black;*/
}

.header{
    background-image: url('../imgs/Sofia-Header.jpg');
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    padding-top: 66.64%; /* (img-height / img-width * container-width) */
                /* (853 / 1280 * 100) */
}

.title{
    font-family: var(--main-font);
    font-size: 36pt;
    font-weight: 500;
    color: var(--main-color);
}

.subtitle{
    font-family: var(--main-font);
    font-size: 28pt;
    font-weight: 400;
    color: black;
}

.paragraph{
    margin: auto;
    margin-bottom: 1em;
    width: 80%;
    color: var(--sec-color);
}

.shadow-text{
    text-shadow: 0px 0px 10px black, 2px 2px 1px black;
}

.shadow-box{
    padding: 3%;
    margin: 5% 2%;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.16), 0px 3px 10px rgba(0, 0, 0, 0.23);
}

.shadow-box-dark{
    padding: 50px;
    margin: 100px 10%;
    box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.8), 0px 3px 10px rgba(0, 0, 0, 0.85);
}

.box{
    background-color: white;
    padding: 5%;
    margin: 5% 5%;
    border: solid 0.2em var(--main-color);
    max-width: 400px;
}

.button{
    background-color: var(--sec-color);
    border-radius: 5%;
    align-items: center;
    justify-content: center;
    margin: auto;
    display:flex;
    width: 10em;
    height: 2em;
}

.cell{
    display: flex;
    color: var(--sec-color);
    padding: 2px;
    margin: 5px;
    width: 80%;
    max-width: 3em;
    font-size: 30pt;
    font-family: var(--sec-font);
    height: 3em;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: solid 5px var(--main-color);
    border-radius: 5%;
}

.image{
    margin: auto;
    width: 100%;
}

.image-rounded{
    border-radius: 20%;
    width: 80%;
}

.svg{
    margin: auto;
    width: 70%;   
}

.circle{
    width: 3em;
    height: 3em;
    border-radius: 50%;
    margin: auto;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: white;
    display: flex;
}

.gallery{
    border-radius: 5%;
    margin-bottom: 20px;
}

.gallery-button{
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
    box-shadow: 0 8px 8px 0 rgba(0,0,0,0.2), 0 6px 6px 0 rgba(0,0,0,0.19);
    font-size: 4ex;
    font-family: var(--default-font);
    color: white;
    border: none 1px var(--main-color);
    background-color: var(--sec-color);
}

/*
@media(min-width: 550px){
    h1{
        font-size: 60pt;
    }

    img{
        width: 100%;
        max-width: 700px;
    }
    
/    .content{   
        max-width: 600px;
    }
/    
    .title{
        font-size: 36pt;
    }
    
    .subtitle{
        font-size: 28pt;
    }
    
    .paragraph{
        width: 80%;
    }
    
    #place {
        width: 80%;
    }

/    .shadow-box{
        padding: 50px;
        margin: 100px 10%;
    }
 /   
    .shadow-box-dark{
        padding: 50px;
        margin: 100px 10%;
    }
    
/    .box{
        padding: 50px;
        margin: 100px 10%;
    }
/    
    .button{
        height: 2em;
    }
    
    .image{
        max-width: 500px;
    }

    .image-rounded{
        width: 60%;
    }   
    
    .svg{
        max-width: 300px;
    }

    .gallery{
        min-width: 500px;
    }

    .cell{
        font-size: 30pt;
    }
}*/