@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

/* base.css */
html {
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    min-width: 320px;
    color: #000;
    background-color: #f5f5f7; /* Светлый фон, похожий на фон iOS */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Обеспечивает, что body занимает всю высоту экрана */
}

a {
    color: #111;
    text-decoration: none;
}

a:hover {
    color: #555;
}

.container {
    flex: 1; /* Контейнер растягивается на оставшееся пространство */
}

footer {
    margin-top: auto; /* Футер всегда внизу */
}
