@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    padding: 10px;
    box-sizing: border-box;
    line-height: 1.6;
}

.karogs {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-top: 10px;
    display: block;
}

.image-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.image-row img {
    width: 150px;
    height: auto;
    margin: 0 10px;
}

.text {
    text-align: center;
    max-width: 810px;
    margin-top: 20px;
    font-size: 1.1rem;
}

ul {
    list-style-type: none;
    padding: 0;
}

@media (max-width: 600px) {
    .flag {
        max-width: 150px;
        width: 90%;
    }
    .image-row img {
        width: 120px;
    }
}