* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

body,html{
    padding:0;
    margin:0;
}

#app{
    min-height:100vh;
    background-color:#202026;
    box-sizing: border-box;
    max-width: 640px;
    margin: 0 auto;
}

.app-header{
    background-image:url("/tarot_assets/images/header.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.app-header-title{
    text-align: center;
    padding:40px 0 20px 0;
}

.app-header-title img{
    width:42%;
}

.app-header-title-text{
    color: #dcba7c;
    font-size: 18px;
    font-weight: 600;
}

.notice{
    position: absolute;
    overflow: hidden;
    top:0;
    width:100%;
    box-sizing: border-box;
    left:0;
    background: rgba(0, 0, 0, 0.2);
    height:30px;
    line-height:30px;
}

.notice-content {
    position: absolute;
    white-space: nowrap;
    color:#fff;
    animation: scroll-left-right 10s linear infinite;
    font-size:14px;
}

@keyframes scroll-left-right {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.app-body{
    position:relative;
}

.contact-wrapper{
    padding: 10px 0;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px 0 0 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.contact-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom:10px;
    color:#fff!important;
    text-decoration:none!important;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item img{
    width: 15px;
    height:15px;
    margin-bottom: 3px;
}

.contact-item span{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

