body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('clouds.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
}

.book-image {
    width: 100px;
    height: auto;
    margin-right: 10px;
    border-radius: 5px;
}

.star-image {
    width: 150px;
    height: auto;
}

h1 {
    font-family: 'Lobster', cursive;
    font-size: 3em;
    color: #333;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; 
    margin: 0 auto;
}

button {
    background-color: #87CEFA;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Lobster', cursive;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #6495ED;
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
}

li {
    background: rgba(255, 255, 255, 0.6);
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.actions {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.actions button {
    margin-left: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    color: black;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 10px;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
	margin-top: 20px;
}

.quote-button {
    background-color: #87CEFA;
    color: #fff;
    margin: 0 15px;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Lobster', cursive;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.quote-button:hover {
    background-color: #6495ED;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 200%;
    max-width: 600px;
    margin: 40px;
}


form {
    display: flex;
    flex-direction: column;
}

input, select, button {
    padding: 10px;
    margin: 10px 0;
}

input, select {
    width: calc(100% - 22px);
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .container {
        width: 70%;
        margin: 15px 0;
        padding: 20px;
    }

    h1 {
        font-size: 2.5em;
    }

    .book-image {
        width: 60px;
    }
	
	 .star-image {
        width: 120px;
    }

    button {
        font-size: 1em;
        padding: 8px 16px;
    }
}
