@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap');

*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 400;
}

body {
    background: #fff;
    background-image: url(../img/background.jpg);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.25) 25%, rgba(255,255,255,1) 100%), url(../img/background.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-background-position: center;
    -moz-background-position: center;
    -o-background-position: center;
    background-position: center;
    height: 100vh;    
}

section.content {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

h1#domainName {
    font-size: 3.5em;
    text-align: center;
    margin: 1em 0;
    margin-bottom: .25em;
    font-weight: 400;
}

p {
    font-size: 1.2em;
}

.row {
    width: 100%;
    margin: 2em auto;
}

img {
    width: 100%;
    max-width: 215px;
}

button.btn {
    margin: 1em;
    padding: .5em 1em;
    font-size: 1.5em;
    border: none;
    background-color: #ff5100;
    font-weight: 400;
    border-radius: 95px;
    box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: all .35s ease-in-out;
}

button.btn:hover {
    background-color: #FB832C;
}

button:focus {
    outline: none;
}

@media screen and (min-width: 600px) {
    h1#domainName {
        font-size: 2.5em;
    }

    p {
        font-size: 1.3em;
    }
    
    .row {
    width: 100%;
    margin: 2em auto;
    }


    button.btn {
        margin: 1em;
        padding: .5em 1.2em;
        font-size: 1.5em;
    }
}

@media screen and (min-width: 960px) {
    h1#domainName {
        font-size: 3.5em;
    }

    p {
        font-size: 1.5em;
    }
    
    .row {
    width: 65%;
    margin: 2em auto;
    }

    button.btn {
        margin: 1em;
        padding: .5em 1em;
        font-size: 1.5em;
    }
}

@media screen and (min-width: 3500px) {
    section.content {
        font-size: 2em;
    }
    
    img {
    width: 100%;
    max-width: 430px;
	}
}


