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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: "Plus Jakarta Sans", serif;
}

.top-bar {
    height: 80px;
    width: 100%;
    padding: 1rem;
    background-color: #13213c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-height: 80px;
    width: auto;
    text-align: center;
    padding: 15px;
    max-width: 54vw;
}

.language {
    width: 40px;
    right: 3rem;
    position: absolute;
    top: 1.7rem;
}

.language a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: "Plus Jakarta Sans", serif;
}

.main-content {
    flex: 1;
    background-image: url('../img/bg.jpg?v=250026');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    width: 65%;
    #max-height: 1080px;
    #max-width: 1920px;
    aspect-ratio: 16/9;
    background-image: url('../img/bg_player.jpg?v=250026');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-bar {
    width: 100%;
    padding: 1rem;
    background-color: #13213c;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 2.8vmax;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.date {
    font-size: 1.6vmax;
    font-weight: normal;
    color: #ffffff;
}

@media (max-width: 768px) {
    .video-container {
        width: 95%;
    }

    .title {
        font-size: 1rem;
    }

    .date {
        font-size: 0.9rem;
    }
}