/* style.css */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap");

html {
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(to bottom, #450068, #C39ED8);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    color: white;
}

.body-blank {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(to bottom, #450068, #88B7CE);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    color: white;
}

.image-container {
    text-align: center;
    display: inline-block;
    width: 160px;
    margin: 10px;
    vertical-align: top;
}

.image-container img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.image-container p {
    margin-top: 8px;
    font-size: 1em;
    color: white;
    line-height: 1.4;
}

.language-list {
    list-style-type: none;
    padding: 0;
}

.language-list li {
    margin-bottom: 8px;
    font-size: 1em;
    display: flex;
    align-items: center;
}

.language-list img {
    height: 15px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

.spaced-paragraph {
    margin-bottom: 40px;
}

.inline-flag {
    height: 15px;
    width: auto;
    vertical-align: text-bottom;
    margin-left: 4px;
    margin-right: 4px;
}

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

a:link {
  color: #1FB8FF;
  text-decoration: none;
}

a:hover {
    color: #450068;
    text-decoration: underline;
}

a:visited {
    color: #c39ed8;
}

.flag-grid {
    display: grid;
    grid-template-columns: repeat(4, 160px);
    gap: 25px 20px;
    justify-content: center;
    align-items: start;
    margin: 30px auto;
}

@media (max-width: 1050px) {
    .flag-grid {
        grid-template-columns: repeat(3, 160px);
    }
}

@media (max-width: 550px) {
    .flag-grid {
        grid-template-columns: repeat(2, 160px);
    }
}