html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: linear-gradient(#291b27,#4c2c48,#7c2f73);
}

#imglogo{
    width:300px;
}

#container{
    /*background-color: red;*/
    height:350px;
    width:500px;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding:10px;
}

#divisore{
    background-color: #f49505;
    height:5px;
    width:100%;
    margin-top:20px;
}

h2{
    /*font-family: 'Rokkitt', serif;*/
    font-family: 'Ubuntu Mono', monospace;
    font-size: 30px;
    color: white;
}

h1{
    font-family: 'Rokkitt', serif;
    /*font-family: 'Ubuntu Mono', monospace;*/
    font-size: 40px;
    color: white;
}

p {
    font-family: 'Rokkitt', serif;
    /*font-family: 'Ubuntu Mono', monospace;*/
    font-size: 22px;
    color: white;
    margin:0px;
}

a{
    color: white;
}

@media only screen and (max-width: 767px) {
    #container{
        width:250px;
    }

    #imglogo{
        width:150px;
    }

    h2{
        font-size: 15px;
    }

    h1{
        font-size: 20px;
    }

    p{
        font-size: 15px;
    }

    #divisore{

        height:2px;

    }
}