body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
}

.header {
    background-color: #79a6d2;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 24px;
}

.content {
    margin: 20px;
}

.big-text {
    font-size: 20px;
    margin-bottom: 20px;
}

.button {
    display: block;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 15px;
    margin: 10px 0;
    text-decoration: none;
    font-size: 18px;
}

.footer {
    background-color: #79a6d2;
    /* ヘッダーと同じ色で統一感を出す */
    color: white;
    text-align: center;
    padding: 10px 0;
    /* 上下に10pxのパディング */
    position: fixed;
    /* フッターを画面下部に固定 */
    bottom: 0;
    width: 100%;
    /* フッターの幅を画面全体に */
    box-sizing: border-box;
    /* パディングを含めたサイズで幅を計算 */
}

@media (max-height: 500px) {
    .footer {
        position: static;
        /* 小さい画面ではフッターを固定しない */
    }
}