body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    /*background: #fefefe url('../background.jpg') no-repeat center center fixed;*/
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#quote {
    font-size: 2.5rem;
    text-align: center;
    margin: 0 20px;
    opacity: 1;
    transition: opacity 0.5s ease;
    line-height: 150%;
    max-width: 950px;
	font-weight: 300;
}

#buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

button {
    background-color: #fff;
    color: #a2a2a2;
    border: 1px solid #CBCBCB;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

button:hover {
    color: #a7a7a7;
    border: 1px solid #a7a7a7;
    transition: background-color 0.5s, color 0.5s, border-color 0.5s;
}

button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
}

#email-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    z-index: 1000;
    width: 90%;
    max-width: 400px;
}

#email-modal h2 {
    margin-top: 0;
}

#email-form div {
    margin-bottom: 10px;
}

#email-form label {
    display: block;
    margin-bottom: 5px;
}

#email-form input, #email-form textarea {
    width: 95%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#email-form button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#email-form button#close-modal {
    margin-right: 10px;
    background-color: #fff;
    color: #bcbcbc;
    border: 1px solid #ccc;
}

#email-form button[type="submit"] {
    background-color: #fff;
    color: #a2a2a2;
    border: 1px solid #CBCBCB;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#error-message {
    color: red;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    #buttons {
        flex-direction: column;
        gap: 10px;
    }
	#quote {
		font-size: 1.8rem;
		margin: 0 35px 35px;
	}