body {
    /* background: url('../assets/bg.jpg'); */
    /* background-repeat: repeat-y; */
    background-color: #0e1019;
    font-family: Lato;
}

.hide {
    display: none;
}

.initial {
    display: block;
}

.logo {
    position: relative;
    z-index: 100;
    margin: 20px 0;
    display: flex;

}

.menu-item {
    display: inline-flex;
    padding: 5px;
    margin: 8px 20px 0 40px;
    float: right;
    font-size: 16px;

    a {
        color: #fff;
        text-decoration: none;
    }

    a.active {
        color: #f562a6;
    }

    a.nsfw {
        color: #e93159;
    }
}

.videos {
    position: relative;
    max-width: 80%;
    height: auto;
    margin: 0 auto;
}

.videos video {
    width: 100%;
    height: auto;
}

.play {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%; /** 98*/
    padding: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
}

.play:hover .fil1 {
    fill: #fff;
}

.menu {
    height: 102%; /** 98*/
    background-color: rgba(0, 0, 0, .7);
}

.menu, .menu-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -51%);
    width: 100%;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.menu, .menu a {
    color: #fff;
    font-weight: bold;
    font-size: large;
}

.menu a:hover {
    cursor: pointer;
}

.first-choice:hover, .second-choice:hover {
    cursor: pointer;
}

.menu ul li {
    width: 70%;
    list-style-type: none;
    background-color: rgb(60, 60, 60, 0.5);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid;
    border-color: rgb(238, 130, 238);
}

@media only screen and (min-width: 768px) {
    .menu ul li {
        display: inline-block;
        margin-right: 30px;
        margin-bottom: 20px;
        /* background-color: #000; */
    }
}

@media only screen and (max-width: 450px) {
    .show-below-450 {
        display: block !important;
        color: red;
        padding-left: 0;
        padding-right: 0;
    }
}