body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background: url('image/a.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.title {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.card {
    background: rgba(255, 255, 255, 0.25);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    color: white;
}

.author {
    font-weight: 600;
}

.year {
    opacity: 0.7;
    font-size: 14px;
    font-weight: 500;
}

.btn {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border-radius: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
}

.settings {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    margin: 0;
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: rgba(255, 255, 255, 0.25);
    padding: 20px;
    border-radius: 20px;
    width: 300px;
    backdrop-filter: blur(10px);
    color: white;
}

label, select, input {
    display: block;
    margin: 15px 0;
    width: 100%;
}

#quoteText {
font-family: 'Dancing Script', cursive;
font-size: 22px;
}

hr {
    border: none;
    height: 1px;
    background: white;
    width: 90%;
    margin: 10px auto;
    opacity: 0.8;
}
