@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap');

body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.wow {
  visibility: hidden;
}

.mouse-hover:hover {
    opacity: 0.7;
    cursor: pointer;
}

:focus {
    outline: none !important;
}

button:focus, .btn:focus {
    outline: 0 none;
    box-shadow: none;
}

.a-no-style {
    text-decoration: none !important;
}

.uppercase {
    text-transform: uppercase;
}

.transition-all {
    -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;    
}



.navbar {
    display: none;
}

h1 {
    font-size: 58px;
    letter-spacing: -2px;
    font-weight: bold;
}

.lead {
    font-weight: 200;
    letter-spacing: 4px;
    font-size: 15px;
    margin: 40px auto 20px;
}

#introHome {
    background-image: url(../img/la-sostanza-del-vago-home.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
    min-height: 100vh;
    margin: 0 auto;
}

#introHome h1 {
    text-shadow: 0px 10px 20px rgb(0 0 0 / 40%);
}


.social div {
    margin-bottom: 15px;
}
.social a {
    display: inline-block;
}
.social img {
    width: 52px;
    margin: 0 18px;
}


.contatti {
    margin-top: 50px;
}
.contatti a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
.contatti a:hover {
    text-decoration: underline;
}

#introHomeCont {
    position: absolute;
    width: 100%;
    top: 44%;
}


#credits {
    position: absolute;
    right: -10px;
    bottom: 18%;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 200;
    opacity: 0.85;
}

.rotate {

  transform: rotate(-90deg);

  /* Legacy vendor prefixes that you probably don't need... */

  /* Safari */
  -webkit-transform: rotate(-90deg);

  /* Firefox */
  -moz-transform: rotate(-90deg);

  /* IE */
  -ms-transform: rotate(-90deg);

  /* Opera */
  -o-transform: rotate(-90deg);

  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

}


.desktop-view { display: block; }
.desktop-inline-view { display: inline-block; }
.mobile-view { display: none; }

/*--------------------------------------------------------------
# Media Query
--------------------------------------------------------------*/

@media only screen and (max-width: 1180px) { 
    
    #introHome {
        background-size: contain;
    }
    
}

@media only screen and (max-width: 991px) { 
    
    .desktop-view { display: none; }
    .desktop-inline-view { display: none; }
    .mobile-view { display: block; }
    
    
    #introHomeCont {
        top: 40%;
    }
    
    .lead {
        letter-spacing: 2px;
        font-size: 13px;
        margin: 35px auto 15px;
    }
    
    .contatti {
        margin-top: 40px;
    }
    .contatti a {
        font-size: 13px;
    }    
    
    h1 {
        font-size: 36px;
    }    
    
    .social img {
        width: 40px;
        margin: 0 10px;
    }
    
    #credits {
        right: -35px;
        top: 65%;
        bottom: auto;
        font-size: 8px;
        opacity: 0.7;
    }
    
}


@media only screen and (max-width: 768px) { 

    h1 {
        font-size: 26px;
    }    
    
}



 