﻿.master-info {
    margin-top: 100px;
}

.window {
    width: 159px;
    height: 235px;
    background-image: url('/IMG/window.png');
    background-repeat: no-repeat;
    margin: 0 auto;
}

    .window .balloon {
        position: absolute;
        width: 308px;
        height: 378px;
        background-image: url('/IMG/balloon.png');
        margin-left: -40px;
        margin-top: -110px;
        animation: balloon 10s infinite;
    }

    .window .hand-left {
        position: absolute;
        width: 79px;
        height: 49px;
        background-image: url('/IMG/hand_left.png');
        margin-left: 80px;
        margin-top: 150px;
    }

    .window .hand-right {
        position: absolute;
        width: 159px;
        height: 235px;
        background-image: url('/IMG/hand_right.png');
        margin-left: 0px;
        margin-top: 0px;
    }

    .window .shine {
        position: absolute;
        width: 159px;
        height: 235px;
        background-image: url('/IMG/shine.png');
        margin-left: 0px;
        margin-top: 0px;
        animation: flash 1s infinite;
    }

    .window .flower {
        position: absolute;
        background-image: url('../IMG/flower.png');
        background-repeat: no-repeat;
        width: 217px;
        height: 280px;
        margin-left:50px;
        margin-top:-40px;
    }

.slogan {
    margin-top: 70px;
}

@media (max-width:767px) {
    .slogan {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@keyframes balloon {
    0%,100% {
        -webkit-transform: translateX(0) translateY(0) rotate(0);
        transform: translateX(0) translateY(0) rotate(0);
    }

    50% {
        -webkit-transform: translateX(-10px) rotate(-10deg);
        transform: translateX(-10px) rotate(-10deg);
    }
}
