body,html {
    margin:0px;
    padding:0px;
    font-family: "Dosis", "Arial", sans-serif;
    background-color:#ec6608;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: -webkit-fill-available;    
}

.icon-wrapper {
    text-align: center;
    padding:20px;
}

h1 {
    text-transform: uppercase;
    font-size: 64px;
    color:#111111;
    margin:0px;
    font-weight: 700;
}

img {
    width:100%;
    max-width: 500px;
}

::-moz-selection {
  color: white; background: black;
}

::selection {
  color: white; background: black;
}

img::-moz-selection {
  color: white; background: transparent;
}

img::selection {
  color: white; background: transparent;
}

@media (min-width:1400px) {
    
    img {
        max-width: 700px;
    }
    

    h1 {
        font-size: 89px;
    }    
    
    
}

@media (max-width:992px) {
    
    img {
        max-width: 400px;
    }
    

    h1 {
        font-size: 51px;
    }    
    
}


@media (max-width:767px) {
    
    img {
        max-width: 250px;
    }
    

    h1 {
        font-size: 32px;
    }    
    
}