:root {
    --color-accent: #5D80FB;
    --color-background: #F3F4F1;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--color-background);
    font-family: 'Inter', sans-serif;
    position: relative;
}

header {
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
}

.card {
    width: 100%;
}

.card + .card {
    margin-top: 16px;
}

.card__image {
    width: 100%;
}

.translate-button {
    display: block;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 10px rgb(0,0,0,0.4);
    cursor: pointer;
    font-size: 14px;
}

.translate-button img {
    width: 24px;
    height: 24px;
}

.translate-button span {
    margin-left: 8px;
    white-space: nowrap;
}
