html {
    height: -webkit-fill-available;
}

body {
    background-color: black;
    color: white;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

header {
    /*border: 2px solid white;*/
    position: absolute;
    display: block;
    top: 20px;
    z-index: 2;
    width: 100%;
    justify-content: center;
    
}

header h1{
    /*border: 2px solid white;*/
    position: relative;
    display: block;
    text-align: center;
}

header h1 a, a:visited {
    text-decoration: none;
    color: white;
}

.howfar {
    /*border: 2px solid white;*/
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10px;
}

.bar {
    display: none;
    width: 360px;
    height: 5px;
    background-color: rgb(0, 217, 255);
}

.img_logo {
    /*border: 2px solid white;*/
    display: inline-block;
    width: 70px;
    transform: translateX(-20%);
}

.company-title {
    /*border: 2px solid white;*/
    display: inline-block;
    font-size: 1rem;
    transform: translateY(-30%);
}

.container {
     /*border: 2px solid white;*/
    position: relative;
    display: flex;
    z-index: 1;
    max-width: 360px;
    margin: 0 auto;
    min-height: 600px;
    height: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

.wrap {
     /*border: 2px solid white;*/
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.motion-container {
    display: block;
    /*border: 2px solid white;*/
    text-align: center;
    width: 360px;
    height: 500px;

}

.welcome-con {
    /*border: 2px solid white;*/
    font-size: 1.8rem;
    font-weight: 100;
    line-height: 2.5rem;
    margin-top: 50px;
    margin-bottom: 30px; 
}

.rest {
    font-weight: bold;
}

.welcome-subcon {
    /*border: 2px solid white;*/
    font-size: 1rem;
    font-weight: lighter;
    margin-bottom: 50px;
}

.img {
    position: relative;
     /*border: 2px solid white;*/
    background-image: url(../img/plane.png);
    left: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 50px;
    background-size: cover;
    transform: translateX(-50%);
}

.start {
    background-color: black;
    color: white;
    border: 2px solid white;
    border-radius: 10px 10px 10px 10px;
    padding: 10px;
    position: relative;
    font-size: 1.5rem;
    font-weight: 1000;
    width: 100%;
    cursor: pointer;
    transition-duration: 0.5s;
    
}

.start:hover {
    background-color: white;
    color: black;
}

.qna {
    display: none;
    /*border: 2px solid white;*/
    text-align: center;
    width: 360px;
    height: 500px;
}

.question {
    font-size: 1.2rem;
    font-weight: 100;
    line-height: 1.5rem;
    margin-top: 50px;
    margin-bottom: 50px;
    animation: fade-in 1s;
}

.answer {
    background-color: black;
    color: white;
    border: 2px solid white;
    border-radius: 10px 10px 10px 10px;
    font-weight: 900;
    margin-bottom: 20px;
    padding: 10px;
    position: relative;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    animation: fade-in 1s;
    transition-duration: 0.5s;
}

.answer:hover {
    background-color: white;
    color: black;
}

.answer:active {
    background-color: white;
    color: black;
}

.loading {
    display: none;
    text-align: center;
    width: 360px;
    height: 500px;
}

.loading_animation {
    margin-top: 100px;
    margin-left: 165px;
    border: 5px solid #acacac;
    border-top: 5px solid #5ad0ff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.loading_text {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 1000;
    letter-spacing: 10px;
}

.result {
    position: absolute;
    display: none;
    text-align: center;
    top: 25px;
    width: 360px;
    min-height: 100%;
}

.characters {
    margin-top: 100px;
    margin-left: 30px;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
}

.title-desc {
    font-weight: 1000;
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 50px;
}

.detail-desc {
    margin-left: 10px;
    margin-right: 15px;
    line-height: 1.5rem;
}

.share-box {
    margin-top: 100px;
}

.sharing {
    font-size: 1rem;
    margin-bottom: 10px;
}

.hashtag {
    font-size: 1rem;
    font-weight: 1000;
    color: #aaaaaa;
    margin-bottom: 10px;
}

.logo-box {
    width: 100%;
    height: 100%;
}

.logo-box span {
    display: inline-block;
    cursor: pointer;
}

.fb {
    width: 25px;
    height: 25px;
    background-image: url(../img/fb.png);
    background-size: cover;

}

.twt {
    width: 25px;
    height: 25px;
    background-image: url(../img/twt.png);
    background-size: cover;
}

.kakao {
    width: 25px;
    height: 25px;
    background-image: url(../img/kakao.jpg);
    background-size: cover;
}

.linkcopy {
    border: 2px solid white;
    background-color: black;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 150px;
    height: 30px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.linkcopy:hover {
    background-color: white;
    color: black;
}