body {
    font-family: 'Meiryo', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'MS Gothic', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 2rem;
    color: #555;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.app-button {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.app-button img {
    width: 30px;
    margin-right: 0.5rem;
}

.app-button span {
    color: white;
    font-weight: bold;
}

.ios {
    background-color: #007aff;
}

.ios:hover {
    background-color: #005bb5;
}

.android {
    background-color: #3ddc84;
}

.android:hover {
    background-color: #2aab62;
}
