/* Reset some default styles */
body, h1, p {
    margin: 0;
    padding: 0;
}

.element {
   margin: 0 calc(50% - 50vw);
   width: 100vw;
}

/* Set a background color for the whole page */
body {
    background-color: #f0f0f0; /* 背景色を適切な色に変更 */
    font-family: Arial, sans-serif;
}

/* Center the content vertically and horizontally */
/* ウェブページ用のスタイル */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 97vh;
    /* その他のウェブページ用のスタイルルール */
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 767px) {
    .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    }
}

@media screen and (max-width: 480px) {
    .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    }
}

@media screen and (max-width: 320px) {
    .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    }
}

/* Center the logo and heading */
.center {
    text-align: center;
}

h1 {
    font-size: 36px;
    color: #333;
}

img {
    max-width: 500px; /* ロゴ画像の最大幅を設定 */
    max-height: 100%
    margin-bottom: 0px; /* ロゴと見出しの間に余白を設定 */
}

/* Style the footer */
footer {
    text-align: center;
    background-color: #B48D4B; /* フッターの背景色を適切な色に変更 */
    color: #fff;
    padding: 5px;
    font-size: 14px;

}

/* Link styles */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
