*, *::before, *::after{
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    font-weight: normal;

}

body{
    padding: 0;
    margin: 0;
    background-color: black;
}

#title{
    text-align: center;
    font-family: 'Sixtyfour', sans-serif;
    font-weight: normal;
    color: aliceblue;
}

#input{
    width: 70%;
    padding: 12px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-size: 16px;
}

#searchBtn{
    width: 30%;
    padding: 12px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 16px; 
}

#resultContainer{
    display: grid;
    grid-template-columns: repeat(1, 50vh);
    justify-content: center;
    align-content: center;
    margin: 0 auto;
    width: 90%;
}

.container{
    display: grid;
    justify-content: center;
    align-content: center;
    min-height: 100vh;
    margin: 0 auto;
}

.search-container{
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 0 auto;
    width: 90%;
    
}

.BookInfo{
    display: grid;
    justify-content: center;
    align-content: center;
    text-align: center;
    margin: 0 auto;
    grid-template-columns: repeat(1, 40vh);   
    padding: 10px;
    margin-top:  50px;
    background-color: white;
    border-radius: 10px;
}

.BookInfo-btn{
    justify-content: center;
    align-content: center;
    margin: 0 auto;
    width: 90%;
    text-align: center;
    padding: 10px;
    margin-top:  50px;
    background-color: white;
    border-radius: 10px;
}

.BookInfo-btn:hover{
    background-color: #ccc;
}

.error{
    background-color: #ccc;
    border-radius: 10px;
    padding: 10px;
    color: red;
    text-align: center;
    margin: 0 auto;
    width: 90%;
    font-size: large;
}



