/* 背景画像をページ全体に設定 */
body {
    background-image: url('VRChat_2024-10-07_01-08-59.417_1920x1080.png'); /* 画像のパスを指定 */
    background-size: cover; /* 画像を画面全体に広げて、アスペクト比を保持 */
    background-position: center; /* 画像を中央に配置 */
    background-repeat: no-repeat; /* 画像が繰り返されないように設定 */
    margin: 0;
    padding: 0;
    height: 100vh; /* ビューポート全体の高さを確保 */
    font-family: Arial, sans-serif;
}

/* コンテンツのスタイル */
.content {
    color: white; /* 背景が暗い場合、文字を白にする */
    text-align: center;
    padding-top: 100px; /* 上部にスペースを確保 */
}
.styled-link {
    display: block; /* ブロック要素にする */
    margin-right: 500px; /* 右側に20pxの空間 */
    margin-bottom: 10px; /* 下に10pxの空間 */
    text-decoration: none;
    display: inline-block; /* マージンを適用するためにインラインブロックに設定 */
}
