/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bebas Neue', sans-serif;
    background-color: #000;
    color: #ef3b3e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Container styles */
.container {
    width: 90%;
    padding: 20px;
    background-color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: 2px solid #ef3b3e;
    border-radius: 10px;
    position: relative;
}

/* Heading styles */
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ef3b3e;
}

/* Paragraph styles */
p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
}

/* Video container styles */
.video-container {
    margin-bottom: 20px;
}

.video-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: none;
}

/* Contact info styles */
.contact-info {
    font-size: 1.2rem;
}

.contact-info a {
    color: #ef3b3e;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}
