body {
    background-image: url(bgBook.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container {
    background-color: rgba(0, 0, 0, 0.876);
    width: 50%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 10px;
}

.imageContainer {
    display: flex;
    justify-content: center;
}

.image {
    width: 90%;
}

.header {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.header h1 {
    text-align: center;
    font-size: 40px;
    letter-spacing: 3px;
    font-family: 'Yeseva One', cursive;
    color: #D36B00;
    margin: 0;
}

.parContainer {
    width: 80%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.quote {
    text-align: start;
}

.author {
    text-align: end;
    width: 100%;
}

.quote, .author {
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 40px;
    font-family: 'Yeseva One', cursive;
    color: #FBEED7;
}

.submit {
    width: 80%;
    display: flex;
    justify-content: space-between;
    padding: 5px;
}

.readbook {
    padding-bottom: 5px;
}


.btn {
    font-size: 18px;
    border: none;
    background-color:rgba(0, 0, 0, 0);
    color: #019463;
    font-family: 'Yeseva One', cursive;
}

@media all and (max-width: 900px) {
    .header h1 {
        font-size: 30px;
        margin-top: 10px;
    }

    .image {
        width: 100%;
    }

    .parContainer {
        width: 90%;
        padding: 15px;
    }

    .quote, .author {
        font-size: 20px;
        line-height: 30px;
    }

    .submit {
        width: 90%;
    }

    .btn {
        font-size: 15px;
    }
}

@media all and (max-width: 750px) {
    .container {
        padding: 15px;
    } 

    .header h1 {
        font-size: 25px;
        letter-spacing: 0px;
    }

    .parContainer {
        padding: 10px;
    }

    .quote, .author {
        font-size: 17px;
        line-height: 20px;
    }

    .btn {
        font-size: 15px;
    }
}

@media all and (max-width: 570px) {
    .header h1 {
        font-size: 20px;
    }

    .quote, .author {
        font-size: 15px;
    }

    .btn {
        font-size: 12px;
    }
}

@media all and (max-width: 450px) {
    .header h1 {
        font-size: 18px;
    }

    .quote, .author {
        font-size: 14px;
    }

    .btn {
        font-size: 10px;
    }
}

@media all and (max-width: 400px) {
    .container {
        padding: 10px;
    } 

    .header h1 {
        font-size: 15px;
    }

    .parContainer {
        padding: 5px;
    }

    .quote, .author {
        font-size: 10px;
    }

    .btn {
        font-size: 7px;
    }
}