body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    height: 100vh; /* 高さを100vhに設定 */
    display: flex;
    flex-direction: column;
}

* {
    box-sizing: border-box;
}

.global-nav, .footer {
    background-color: #fa7083;
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
    height: 50px;
}

.logo {
    width: auto; /* ロゴのサイズを調整 */
    height: 100%;
}

.content {
    flex-grow: 1; /* コンテンツエリアが中央に来るように調整 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 24px;
    color: #333;
}

p {
    color: #555;
}