@import url('https://fonts.googleapis.com/css2?family=Antonio&display=swap');

:root {
    --background-colour: var(--dark-red);
    --dark-red: #550000;
    --mid-red: #800000;
    --light-red: #AA0000;
}
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Antonio', serif, sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(55, 0, 0, 0.95); /* Semi-transparent overlay */
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 15px;
}

footer {
    background: rgba(0, 0, 0, 0.8); /* Darker semi-transparent footer */
    padding: 1rem;
    text-align: center;
    z-index: 1;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    margin: 15px;
}

.logo-text {
    font-size: 32pt;
    text-shadow:
    2px 2px 0 var(--dark-red),
    -2px 2px 0 var(--dark-red),
    -2px -2px 0 var(--dark-red),
    2px -2px 0 var(--dark-red);
    display: inline-block;
    padding-bottom: 10px;
}

.red {
    color: var(--light-red);
}

.white {
    color: white !important;
}

iframe {
    margin: 15px;
}

.copyright {
    float: left;
    line-height: 30px;
    font-size: 0.8rem;
    font-weight: 200;
    color: silver;
}

.social-media {
    float: right;
}

.social-media img {
    width: 30px;
    height: 30px;
}

.image-button {
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    padding: 10px 20px; /* Padding for aesthetics */
    background-color: #5865F2; /* Discord Blue */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Enhanced 3D shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
    color: #ffffff; /* Text color */
    text-decoration: none; /* No underline on text */
    width: 200px; /* Fixed width for the button */
    height: 100px; /* Fixed height for the button */
    cursor: pointer; /* Pointer cursor on hover */
    margin: 15px;
}

.image-button:hover {
    transform: translateY(-2px); /* Lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Darker shadow on hover */
    background-color: #4752c4; /* Darker blue on hover */
}

.image-container {
    display: flex; /* Flex to center content */
    justify-content: center; /* Center images horizontally */
    align-items: center; /* Center images vertically */
    width: 200px; /* Fixed width for images */
    height: 40px; /* Fixed height for images */
}

.button-image {
    width: 100%; /* Make image take the full width of container */
    height: auto; /* Maintain aspect ratio */
}
