* {
    box-sizing: border-box;
    margin: 0 ;
    padding: 0;
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.hero {
    padding: 2.8rem 0 3.8rem 0;
    height: 100vh;
    width: 100vw;
    background: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)),
    url(/book-cover.jpg);
    background-size: cover;
    background-position: center;
}

h1 {
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.hook {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.hook button {
    max-width: 400px;
    background-color: rgb(104, 30, 30);
    color: wheat;
    padding: 2rem;
    border: none;
    border-radius: 6px;
     font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
    cursor: pointer;
}

.hook button:hover {
    background-color: rgb(165, 48, 48);

   
}