html {
    height: 100vh; /* set viewport constraint */
    min-height: 100%; /* enforce height */
}
body {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 300;
    color: rgba(0,0,0,0.7);
    
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
    -webkit-text-size-adjust: 100%;
    
    background:linear-gradient(0deg,rgba(255,255,255,0.75),rgba(255,255,255,0.75)),url(../images/bg-body.jpg);
    background-attachment: fixed;
    background-size: cover;
}
a, a:hover, a:active, a:focus, a:visited {
    color: rgba(0,0,0,0.7);
    text-decoration: none;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}
.home {
    margin:0 auto;
    max-width:500px;
    text-align: center;
}
.home img {
    max-width:500px;
}
.domain {
    border-radius:10px;
    padding:5px 15px;
    margin-right:10px;
    margin-top:10px;
    background: rgba(255,255,255,0.7);
    text-align:left;
    display: inline-block;
}

/* RESPONSIVT */
@media (max-width: 480px) {
    
.home {
    margin:0 auto;
    max-width:290px;
    text-align: center;
    padding-top:
}
.logo {
    margin-top:15px;
    width:290px;
    height:auto;
}
    
}