body {
    background: url("../img/bg.png");
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

.header {
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 25px;
    align-items: center;
}

.header-logo {
    width: 250px;
    height: 100px;
}

.header-right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
}

.header-right button {
   height: 40px;
}

.header-right-text {
    margin: 5px;
}

.player {
    margin: 25px auto 20px auto;
    width: 100%;
}

iframe {
    width: 100%;
}

#event-frame-01 {
    width: 100%;
    height: 600px;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer img {
    width: 150px;
}

.footer .fab {
    margin: 5px;
}


@media screen and (max-width: 768px) {
    .header-title {
        display: none;
    }

    .footer {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .footer-title {
        font-size: 16px;
    }

    .social-media {
        display: none;
    }
  }

@media screen and (max-width: 575px) {
    .header {
        display: block;
        text-align: center;
    }

    .header-logo {
        width: 200px;
        height: 90px;
    }

    .player {
        margin: 10px;
        width: 100%;
    }
  }