@charset "UTF-8";
/* CSS Document */

html {
    height: 100%
}

body {
    height: 100%
}

.wrapper {
    background-color: #000000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-logo-box {
    
}

.top-logo {
    transform-origin: center;
    animation: loading 1.5s cubic-bezier(00.750, -0.365, 0.385, 1.650);   
}

@keyframes loading {
    	0% {opacity: 0;transform: scale(1.2);}
	65% {transform: scale(1);}
    70% {transform: rotate(2deg);}
    75% {opacity: 1;transform: rotate(-2deg);}
    80% {opacity: 1;transform: scale(1);}
    100% {opacity: 1;transform: scale(1);}
}


.top-logo img {
    display: block;
    width: 100%;
}