@font-face {
    font-family: 'ABC Arizona Serif';
    src: url('../../assets/fonts/ABCArizonaSerif-Medium.woff2') format('woff2'),
        url('../../assets/fonts/ABCArizonaSerif-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}
body {
    background-color: #D2D3C8;
}

/* Video Container */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -4;
}

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

/* Content Overlay */
.content {
    position: relative;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%; /* Adjusted height for spacing */
    width: 80%;  /* Adjusted width for spacing */
    margin: 10%; /* Centering the content with 10% margin */
    text-align: center;
    color: white;
    padding: 20px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.address p {
    display: block;
    margin-bottom: 6px;
}
.address p a {
    color: white;
    transition: all 0.3s ease-out;
}
.address p a:hover {
    color: black;
    letter-spacing: 1px;
}
.address {
    position: fixed;
    z-index: 3;
    display: inline-block;
    width: 100vw;
    height: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 32px 26px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.01);
    border-radius: 4px;
    font-family: 'ABC Arizona Serif';
    backdrop-filter: blur(3px); 
    font-size: 1rem;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}
  
.address.visible {
    opacity: 1;
}
/* Media Query for Mobile Devices */
/* @media (max-width: 768px) { */
@media (max-width: 1200px) {
    .video-container video {
        object-fit: contain;
    }

    .content {
        height: auto;
        width: 90%;
        margin: 5%;
        padding: 10px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1.2rem;
    }
}
