
body {
    background-image: url(img/bg.png);
        
    /* 画像を常に天地左右の中央に配置 */
    background-position: center center;
    
    /* 画像をタイル状に繰り返し表示しない */
    background-repeat: no-repeat;
    
    /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
    background-attachment: fixed;
    
    /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
    background-size: cover;
}

.content{
    display: grid;
    place-items: center;
    height: 100vh;
}

.text_wrap {
    text-align: center;
}

.container {
    display: flex;
    align-items: center;
}

h1 {
    margin: 0 120px 10px 0;
    font-size: 40px;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.img_wrap {
    text-align: center;
    
}

.end_of_support {
    margin: 32px auto 24px auto;
    display: block;
    width: 460px;
}

#link {
    margin: 0px auto;
    display: block;
    width: 700px;
}

#link:hover {
    opacity: 0.8;
}

.ver_up {
    margin: 0px auto;
    display: block;
    width: 700px;
}