﻿/*
 * Sofiale
 */
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300&display=swap'); 
 
body {
    margin: 0;
    padding: 0;
    font-size: 24px;
    #line-height: 15px;
    font-family: 'Signika', sans-serif;
    font-weight: 300;
    color: #ffffff;
    background-color: #0a306b;
}

a { color: #2965a6; text-decoration: none; }
a.white { color: #fff; text-decoration: none; }
a:hover { text-decoration: underline; }

.sf { font-size: 21px; }

#sInfo {
    position: relative;
    width: 50%;
    height: 100vh;
    float: left;
    background-image: url(fale.svg);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: auto 10%;
}

#sInfo #sContent {
    position: relative;
    width: 80%;
    max-width: 575px;
    height: 600px;
    
    
    top: 50%;
    margin-top: -300px;
    margin-left: auto;
    margin-right: auto;
    
    margin-bottom: 50px;
}

#sInfo #sContent .logo {
    width: 100%;
    height: 150px;
    background-image: url(logo.svg);
    background-repeat: no-repeat;
    background-position: center center;
}
#sInfo #sContent .cont {
    margin-top: 50px;
    letter-spacing: 0.5px;
}
#sInfo #sContent .links {
    margin-top: 50px;
}
#sInfo #sContent .links .insta {
    display: block;
    width: 72px;
    height: 72px;
    overflow: hidden;
    background-image: url(insta.svg);
    background-repeat: no-repeat;
    #opacity: 0.2;
    float: left;
    margin-right: 20px;
    transition: 0.3s;
}
#sInfo #sContent .links .fb {
    display: block;
    width: 72px;
    height: 72px;
    overflow: hidden;
    background-image: url(fb.svg);
    background-repeat: no-repeat;
    #opacity: 0.2;
    float: left;
    transition: 0.3s;
}
#sInfo #sContent .links .fb:hover { fill: #fff !important; }

#sInfo #sContent .links .fb:hover {
    background-image: url(fb_w.svg);
    transition: 0.2s;
}
#sInfo #sContent .links .insta:hover {
    background-image: url(insta_w.svg);
    transition: 0.2s;
}

#sImage {
    position: relative;
    width: 50%;
    height: 100vh;
    float: right;
    
    background-image: url(sofiale.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media screen and (max-width: 800px) {
    #sInfo {
        width: 100% !important;
        height: 700px !important;
    }
    #sImage {
        width: 100% !important;
        height: 50vh !important;
    }
}