body {
    background-color: #050c12;
    background-image: url('background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: 100% 100%;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit; /* Inherits the background image */
    filter: blur(6px); /* Blurs the background */
    z-index: -1;
}

video {
    position: fixed;
    bottom: 0;
    left: -250;
    z-index: 10;
    width: auto;   /* keeps video’s aspect ratio */
    height: auto;  /* keeps video’s aspect ratio */
    max-width: 100%; /* optional: size limit */
    max-height: 100%; /* optional: size limit */
}

.discord {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.presentation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the images horizontally */
    margin-left: auto;
    margin-right: auto;
    width: 41%;
    z-index: 15; /* Keeps it in the foreground */
}

.flags {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 20; /* Keeps it in the foreground */
}

.flags img {
    margin: 0 5px;
}
