/* General styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: url(images/library2.png) no-repeat center center/cover;
}

.container {
    width: 550px;
    height: 450px;
}

.header {
    font-size: 1.2rem;
    border: solid 2px #fff;
    color: #fff;
    background-color: #262626;
    padding: 5px;
    width: 80%;
    margin: 20px auto;
    border-radius: 5px;
}

.main-container {
    width: 100%;
    height: 300px;
    background-color: #fff;
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 0 10px;
}

.main-container .text-area {
    font-size: 1.1  rem;
    line-height: 1.5;
}

.main-container .author{
    font-size: 1.4rem;
    color: red;
    text-transform: uppercase;
    margin-top: 20px;
}

.button-area button {
    background-color: #262626; 
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 15px;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.button-area button:active {
    background-color: lightblue;
}