*, *::after, *::before{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html,body{
    height: 100%;
}

body{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: url(./bg.jpg) center/cover no-repeat;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

main{
    max-width: 50%;
}

main section h2{
    background-color: black;
    border: 2px solid #fff;
    border-radius: 2px;
    color:#ccc;
    padding: 10px;
    margin: 10px auto;
}

main section .quote{
    background-color: #fff;
    padding: 10px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid #000;
} 

small{
    font-style: italic;
    margin-top: 20px;
}

button{
    background-color: brown;
    color:#fff;
    width: 60%;
    height: 40px;
    border: 1px solid #000;
    margin-top: 2em;
    padding: 0 10px;

}

button:active{
    background-color: #000;
    color:#fff;
    width: 60%;
    height: 40px;
    border: 1px solid #000;
    margin-top: 2em;
    padding: 0 10px;

}