/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

body{
    background-image: -o-linear-gradient(bottom, #dfe9f3 0%, white 100%);
    background-image: -webkit-gradient(linear, left bottom, left top, from(#dfe9f3), to(white));
    background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
    background-image: url('../images/bg-italian-flag-mobile-3.svg');
    background-position: center;
    background-size:cover;
    padding:0;
    margin:0;
    min-width: 100vw;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
@media (min-width:992px){
    body{
        background-image: url('../images/bg-italian-flag-3.svg');
    }
}
*{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size:1.5rem;
    font-weight: 700;
    /* color:#003e4d; */
    color:#444444;
    text-transform: uppercase;
    text-align: center;
    margin-top:0;
    margin-bottom: 2rem;
}
h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    font-style: italic;
    text-align: center;
    /* color:#003e4d; */
    color:#444444;
}
.container {
    width:100%;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin:1rem 0;
}
.column {
    margin: 1rem;
    /* -webkit-box-flex:1;
        -ms-flex:1 1 calc(33.333% - 2rem);
            flex:1 1 calc(33.333% - 2rem); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.flag{
    width:100%;
    max-width:920px;
}
.logo {
    position: relative;
    z-index: 1;
}
.logo:hover{
    opacity:0.7;
    -webkit-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
.logo img{
    width:70px;
    max-height:70px;
}
.credits{
    font-size:.7rem;
    position: absolute;
    bottom: 1rem;
    font-family: 'Titillium Web', sans-serif;
    color: #666666;
    opacity:0.5;
}
.credits a,
.credits a:visited{
    color: #666666;
    text-decoration: none;
}
.credits a:hover{
    opacity: .9;
}
@media (min-width:576px){
    h1{
        font-size: 2.5rem;
    }
    h2 {
        font-size:1.5rem;
    }
    .logo img{
        width:100px;
        max-height:100px;
    }
}
@media (min-width:768px){
    .aquila{
        width:150px;
        top:2rem;
        right:2rem;
    }
    .logo img{
        width:150px;
        max-height:150px;
    }
}