@import url("https://fonts.googleapis.com/css?family=Enriqueta:400,700");
@import url("https://fonts.googleapis.com/css?family=Raleway:400,700");

* {
    font-family: 'Raleway', sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    min-width: 1100px;
    scroll-behavior: smooth;
}
a {
    color: #383838;
    text-decoration: none;
}

.parallax {
    background-image: url("usage.jpg");
    min-height: 700px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-shadow: inset 0px 6px 20px -2px rgba(0,0,0,0.52);
    -moz-box-shadow: inset 0px 6px 20px -2px rgba(0,0,0,0.52);
    box-shadow: inset 0px 6px 20px -2px rgba(0,0,0,0.52);
}

#buybtn {
    height: 30px;
    line-height: 30px;
    display: inline;
    float: right;
    border: 1px solid #b9000a;
    color: #b9000a;
    border-radius: 3px;
    margin: 12px 20px 13px 20px;
    cursor: pointer;
    font-weight: bold;
    -webkit-transition: .5s; /* Safari */
    transition: .5s;
}

#buybtn:hover {
    background: #b9000a;
    color: white;
    -webkit-transition: .5s; /* Safari */
    transition: .5s;
}

.clickable {
    text-decoration: none;
}

.clickable:hover {
    text-decoration: underline;
}

span {
    color: #b9000a;
}