:root{
    --primary-color: #ffffff;
    --secodary-color: #f8f9fa;
    --accent-color: #0e1f3a;
    --text-color: #2a2a2a;
    --border-color: #e5e7eb;
    --highlight: #ffd700;
}

#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1; /* Places video behind content */
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 20%;
}

body{
    text-align: center;
    background: azure;
}

.purchase-form {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    width: 50%;
    margin: auto;
    text-align: center;
    border-radius: 10px;
    backdrop-filter: blur(1px);
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 5px;
}

button {
    background: var(--highlight);
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

h1{
    color: var(--highlight);
    font-size: 24px;
}