html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.background-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.contact-box h2 {
    margin-top: 0;
}

.contact-box form {
    display: flex;
    flex-direction: column;
}

.contact-box label {
    margin-bottom: 10px;
}

.contact-box input[type="email"] {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-box button {
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-box button:hover {
    background-color: #0056b3;
}

.bottom-right-image {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 420px;
    height: 300px;
    z-index: 9999;	
	background-color: #000;
}

.book-link {    
	color: #FFF;
}

.text-info {
    padding:10px;
   	color: #FFF;	
	font-size: 20px;
}





