@charset "UTF-8";

/* definizione dei font */
@font-face {
	font-family: MPLUSRounded-Black;
	src: local('MPLUSRounded-Black'), url('../font/MPLUSRounded/MPLUSRounded1c-Black.ttf') format('truetype');
}
@font-face {
	font-family: MPLUSRounded-Bold;
	src: local('MPLUSRounded-Bold'), url('../font/MPLUSRounded/MPLUSRounded1c-Bold.ttf') format('truetype');
}
@font-face {
	font-family: MPLUSRounded-ExtraBold;
	src: local('MPLUSRounded-ExtraBold'), url('../font/MPLUSRounded/MPLUSRounded1c-ExtraBold.ttf') format('truetype');
}
@font-face {
	font-family: MPLUSRounded-Light;
	src: local('MPLUSRounded-Light'), url('../font/MPLUSRounded/MPLUSRounded1c-Light.ttf') format('truetype');
}
@font-face {
	font-family: MPLUSRounded-Medium;
	src: local('MPLUSRounded-Medium'), url('../font/MPLUSRounded/MPLUSRounded1c-Medium.ttf') format('truetype');
}
@font-face {
	font-family: MPLUSRounded-Regular;
	src: local('MPLUSRounded-Regular'), url('../font/MPLUSRounded/MPLUSRounded1c-Regular.ttf') format('truetype');
}
@font-face {
	font-family: MPLUSRounded-Thin;
	src: local('MPLUSRounded-Thin'), url('../font/MPLUSRounded/MPLUSRounded1c-Thin.ttf') format('truetype');
}
@font-face {
	font-family: Silkscreen-Regular;
	src: local('Silkscreen-Regular'), url('../font/Silkscreen/Silkscreen-Regular.ttf') format('truetype');
}

@keyframes lamp {
    from {opacity: 1;}
    49% {opacity: 1;}
    50% {opacity: 0;}
    99% {opacity: 0;}
    to {opacity: 1}
}

@keyframes changeColor {
    from {text-shadow: 0px 0px 8px rgba(51, 255, 0, 0.8);}
    17% {text-shadow: 0px 0px 8px rgba(255, 255, 0, 0.928);}
    50% {text-shadow: 0px 0px 8px rgba(255, 200, 0, 0.972);}
    83% {text-shadow: 0px 0px 8px rgba(255, 255, 0, 0.928);}
    to {text-shadow: 0px 0px 8px rgba(51, 255, 0, 0.8);}
}


.mainLamp {
    animation-name: lamp;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}


.mainBackground {
    /* background-color: red; */
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    /* background-image: url("../img/piante-fiori-sole.jpg");
    background-size: cover; */
    

    background: url("../img/piante-fiori-sole.jpg") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    

}

.logoPayoff {
    min-width: 24vw;
    width: 24vh;
}

.mainContent {
    position:absolute;
    left: -750px;
    margin-left: 50%;
    width: 1500px;
    min-height: 100vh;
}

.zonaSfumatura {
    /* background-image: url("../img/back-sfumato.png");
    background-repeat: no-repeat;
    background-size:100%;
    background-position-x: left; */
    overflow: hidden;
    /* min-height: 500px; */
    /* min-height: 40vh; */
    min-width: 90vw;
    width: 90vh;
    height: auto;
}

.zonaLogo {
    position: fixed;
    top: 20px;
    left: 20px;
}


.zonaScrittaMain {
    font-family: Silkscreen-Regular;
    text-align: center;
    font-size: 5vh;
    color: #000000;
    position: fixed;
    top: 35%;
    width: 70%;
    left: 15%;
    line-height: 7vh;
    animation-name: changeColor;
    animation-duration: 10s;
    animation-iteration-count: infinite;

}

.zonaFooter {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 100px;
    background-color: #334233b3;
    z-index: 2;
    font-family: MPLUSRounded-Regular;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #fdd546d9;
    box-sizing: border-box;
    padding: 30px 10px 10px 10px;
}