@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&family=Libre+Caslon+Text&family=Quattrocento:wght@400;700&display=swap');

.video-container{
    position: relative;
    height: calc(100vh - 100px);
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    z-index: 1;
}

.background-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fffff0;
    background: none;
    padding: 0;
}

.content h1{
    font-family: "Libre Caslon Text", serif;
    font-weight: 500;
    font-size: 3rem;
    color: #fffff0;
    background: none;
    margin-bottom: 20px;
}

.order-button{
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    background: #36454f;
    color: #fffff0;
    cursor: pointer;
}








