* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Best10Font', sans-serif;
}

/* 全体のスタイル */
@font-face {
    font-family: 'Best10Font';
    src: url('fonts/BestTen-DOT.otf') format('opentype'),
        url('fonts/BestTen-CRT.otf') format('woff');
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}


.business-card {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('images/pirate-ship-deck3.jpg');
    background-size: cover;
    /* 背景を画面にぴったり合わせる */
    background-position: center;
    /* 背景の中央を表示 */
    background-repeat: no-repeat;
    /* 背景を繰り返さない */
    overflow: hidden;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;

    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    /* テキストの色を白、かつ80%の透明度に設定 */
    /* background: rgba(0, 0, 0, 0.6); */
    /* 背景を半透明の黒にしてテキストを読みやすく */

    /* max-width: 90%; */
    /* padding: 2rem; */
    /* max-width: 90%; */
    margin: 0 auto;

}

h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    /* Spacing for h1 */
}

h2 {
    font-size: 1.7rem;
    margin-bottom: 3rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    /* Spacing for paragraphs */
}

li a {
    font-size: 2em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

/*      for html02     */

#page02 .business-card {
    background-image: url('images/white-wall2.jpg');
}

#page02 h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

#page02 h2 {
    font-size: 2rem;
    color: rgba(186, 183, 183, 0.585);
    margin-bottom: 6em;
}

#page02 .text01 {
    color: rgba(133, 131, 131, 0.585);
}

#page02 .text02 {
    color: rgba(71, 71, 71, 0.585);
}

/* For smaller devices */
@media (max-width: 768px) {
    h1 {
        font-size: 5rem;
        margin-bottom: 5rem;
    }

    p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
}