body {
    margin: 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

#playVideo {
    display: none;
    width: 100%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

#container {
    width: 100%;
    height: 100%;
    position: fixed;
}

.conf {
    width: 8px;
    height: 16px;
    position: relative;
    z-index: 10000;
}

#img-background {
    background-image: url(/images/happy/2019/img_background.svg);
    background-position: 50% 70%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #f2f4f5;
}

.content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-top: 85px;
}

#text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: -70px;
    position: relative;
    opacity: 0;
    font-size: 10px;
    line-height: 27px;
    font-weight: 500;
    text-shadow: 1px 1px #edf1f2;
    text-align: center;
    transition: top 2s;
}

#text .bold {
    margin-top: 20px;
    font-weight: 700;
}

#full-img {
    display: flex;
    position: relative;
    flex: 1;
    text-align: center;
}

#full-img div {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70%;
    background-size: contain;
    background-position: right 50% bottom 0;
    background-repeat: no-repeat;
}

#center-gif2 {
    opacity: 0;
    background-image: url("/images/happy/2019/gif2.gif");
}

#center-gif3 {
    opacity: 0;
}

#center-gif4 {
    opacity: 0;
    background-image: url("/images/happy/2019/gif4_no-blink.gif");
}

.enter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 150px;
    height: 30px;
    line-height: 30px;
    padding: 13px;
    margin: 10px auto 0;
    bottom: 13%;
    border-radius: 6px;
    background-color: #EC008C;
    text-align: center;
    cursor: pointer;
    opacity: 0;
}

.enter:hover {
    background-color: rgba(236, 0, 140, 0.9);
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.enter a {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
}

.enter a:hover {
    color: #ffffff;
    text-decoration: none;
}

.enter a:focus {
    color: #ffffff;
    text-decoration: none;
}

.logo {
    top: 30px;
    position: absolute;
    width: 100%;
}

.logo img {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}