*{
    margin: 0%;
    padding: 0%;
}
body{
    color: white;
    background-color: white;
}
#heading{
    background-color: rgba(238, 68, 68, 0.63);
    padding: 10px;
    margin: 0%;
}

.box{
    width: 30%;
    background-color: black;
    padding: 10px;
    margin: 20px;
    border-radius: 10px;
    display: inline-block;
    vertical-align: top;
}
.box button{
    width: 60px;
    padding: 5px;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    background-color: rgba(238, 68, 68, 0.63);
    color: white;
    border-radius: 10px;
    border: none;
}
.box a{
    color: white;
    width: 90px;
    padding: 6px;
    font-size: 15px;
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
    text-align: center;
    background-color: rgba(238, 68, 68, 0.63);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    border: none;
}
.box h3{
    margin-bottom: 10px;
    color: rgba(238, 68, 68, 0.63);
}
.box h5{
    margin-bottom: 10px;
}
.box p{
    margin-bottom: 10px;
}
#outeralert{
    width: 100%;
    height: 100%;
    opacity: 0.8;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0%;
    left: 0%;
    z-index: 1;
    display: none;
}
#alertmessage{
    top: 25%;
    width: 30%;
    padding: 10px;
    left: 35%;
    background-color: black;
    /* opacity: 0.8; */
    position: absolute;
    z-index: 2;
    display: none;
    border-radius: 10px;
}
#alertmessage h2{
    text-align: center;
    margin-bottom: 25px;
}
#alertmessage input{
    margin-bottom: 20px;
    width: 90%;
    padding: 5px;
    background-color: black;
    border-top: none;
    color: white;
    margin-left: 4%;
    margin-right: 4%;
}
#alertmessage textarea{
    margin-bottom: 20px;
    width: 90%;
    padding: 5px;
    background-color: black;
    border-top: none;
    color: white;
    margin-left: 4%;
    margin-right: 4%;
}
#alertmessage input::placeholder{
    color: white;
}
#alertmessage textarea::placeholder{
    color: white;
}
#alertmessage button{
    width: 60px;
    padding: 5px;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    background-color: rgba(238, 68, 68, 0.63);
    color: white;
    border-radius: 10px;
    border: none;
}
#alertmessage #cancel{
    /* margin-left: 40vh; */
    right: 15px;
    bottom: 10px;
}
#alertmessage #add{
    margin-left: 20px;
}
#alertmessage input:focus{
    outline: none;
}
#alertmessage textarea:focus{
    outline: none;
}
#newaddbook{
    width: 50px;
    height: 70px;
    color: black;
    border-radius: 50%;
    font-size: 20px;
    border: none;
    background-color: rgba(238, 68, 68, 0.63);
    position: fixed;
    right: 30px;
    bottom: 30px;
}



#homes a{
    text-decoration: none;
    border: 2px solid black;
    border-radius: 5px;
    color: black;
    background-color: rgba(238, 68, 68, 0.63);
    font-size: 30px;
    padding: 3px;
    position: fixed;
    left: 30px;
    bottom: 30px;
}