
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400&display=swap');

body{
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #ffffff ;
    background-size: contain;
}

.logo{
    background: url('../img/logo.svg') center center no-repeat;
    background-size: cover;
    width: 328px;
    display: block;
    height: 67px;
    margin-bottom: 30px;
}

.waiting-content{
    text-align: center;
    color: #1a2425;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 100;
}

a{
    color: #B4C64D;
    text-decoration: none;
    font-weight: 600;
}

a:hover{
    text-decoration: underline;
}