* {
    box-sizing: border-box;
}

body {
    background-color: #36465d;
    margin: 0;
    font-family: Open Sans, Helvetica, sans-serif;
}

h2 {
  color: #fff;
  text-align: center;
  font-weight: 600;
/*  font-size: 20px; */
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.post {
    width: 100%;
    margin: 20px 0;
    background-color: white;
    border-radius: 5px;
    padding: 20px 0;
}

.post:first-child {
    margin-top: 30px;
}

.videoContainer > *,
.imageContainer > * {
    width: 100%;
    min-height: 270px;
    height: auto;
    margin: 0;
}

.miniVideo {
    position: fixed;
    right: 30px;
    bottom: 20px;
    width: 260px;
    height: 146px;
    border-radius: 10px;
    background-color: white;
    padding: 15px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.7s ease, opacity 0.3s ease;
}

.miniVideo.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.miniVideo> * {
    width: 100%;
    height: 100%;
    background-color: #000;
    margin: 0;
}
.close {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 30px;
    height: 30px;
    font-size: 14px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.75);;
    color: #4c4c4c;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border-radius: 50%;
}
.close:hover {
    background-color: #fff;
}