@font-face {
    font-family: TerrorFarm;
    src: url("../fonts/Terror\ Farm.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}


.card__header {
    position: relative;
    height: 100%;
}

.header__video {
    position: relative;
    height: 100%;
    width: 100%;
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.header__content {
    text-align: center;
    z-index: 1;
    padding: 20px;
    background-color: rgba(12, 15, 18, 0.7);
    border: 2px solid #8b0000;
    border-radius: 5px;
    max-width: 80%;
}

.content__title {
    font-family: "TerrorFarm", serif;
    color: #c0c0c0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px #000;
    margin: 0;
    padding: 10px;
    letter-spacing: 2px;
}

.card__button {
    text-align: center;
}

.enter-button {
    background-color: transparent;
    color: white;
    border: 2px solid #8b0000;
    padding: 15px 30px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.enter-button:hover {
    background-color: #8b00004d;
    transform: scale(1.05);
}

.enter-button a {
    color: white;
    text-decoration: none;
}

.video-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

@media (max-width: 600px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    .card__title, .contect__title {
        font-size: 1.3rem;
    }
}