@import url('style.css');

.topbar {
    background-image: url("https://i.imgur.com/OlMQUX6.jpeg");
    background-size: cover;
    background-position: center;

    height: 16rem;
    width: 100%;

    display: flex;
    align-content: center;
    flex-direction: row-reverse;
    align-items: center;

    box-shadow: #4c4c4c 0px 0px 15px 0px;
}

.gohomeblock {
    padding: 2rem 10rem;
}
.gohomeblock a {
    text-decoration: none;
    color: #101010;
}
.gohomeblock a:hover {
    text-decoration: underline;
    color: #101010;
}

.contentblock {
    padding: 3rem 10rem;
}

.contentblock .content {
    padding-top: 0.8rem;
}

img {
    padding: 2rem 0;
    max-width: 80vw;
}

.video-container {
    padding: 2rem 0;
}

.video-container .player {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 50vw;
    height: calc(50vw * 0.56);
}

.video-container video {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}
  
.video-container .video-title {
    position: absolute;
    font-size: 8px;
    width: 100%;
    top: 5px;
    left: 0;
    z-index: 1;
    color: white;
}


@media only screen and (max-width: 768px) {
    .gohomeblock {
        padding: 2rem 2rem;
    }
    .contentblock {
        padding: 3rem 2rem;
    }
    .video-container .player  {
        width: 80vw;
        height: calc(80vw * 0.56);
    }
}