@font-face {
    font-family: roboto_reg;
    src: url(fonts/RobotoCondensed-Regular.ttf);
}

@font-face {
    font-family: roboto_bold;
    src: url(fonts/RobotoCondensed-Bold.ttf);
}

body {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    font-family: roboto_reg;
    font-style: normal;
    background-color: rgba(0, 0, 0, 0.3);
}

.container {
    width: 100%;
    height: 100%;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

video {
    filter: brightness(75%);
}

.text {
    margin: 2rem 2rem 0;
    z-index: 100;
    padding: 5px 15px;
    text-align: center;
    color: white;
}

h2 {
    font-weight: 700;
    font-size: 64px;
}

p {
    font-size: 28px;
}

.overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    height: 100%;
}

ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

ul li {
    list-style: none;
}

ul li a {
    margin: 0 0.3vw;
    padding: 0.3rem;
    display: block;
    border-radius: 50%;
}

a:hover {
    transition: 0.5s;
    background-color: rgb(255, 0, 0);
}

.Logo {
    text-align: center;
    padding-left: 10px;
    display: block;
    width: 30vw;
    max-width: 67rem;
    height: auto;
}

.text_container {
    margin-top: auto;
}

.logo_container {
    padding-top: 8%;
}

a img {
    width: 100%;
    height: auto;
}


/* small devices */

@media only screen and (max-width: 600px) {
    h2 {
        font-size: 28px;
    }
    p {
        font-size: 16px;
    }
    ul li a {
        margin: 0 0.2vw;
        padding: 0.1rem;
        display: block;
        border-radius: 50%;
    }
    ul li {
        height: 90%;
    }
    .Logo {
        width: 60vw;
    }
}