html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

* {
    text-align: center;
}

img.background {
    filter: blur(6px);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
}

.container {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    width: min(800px, 80%);
    height: fit-content;
    padding-top: 1rem;
    padding-bottom: 4rem;

    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;

    border-radius: 1.5rem;

    display: flex;
    flex-direction: column;
    align-items: center;
}

div.map {
    position: relative;
    min-height: 160px;
    max-height: 300px;
    width: min(100%, 560px);
}

img.map {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.map > img:not(.map) {
    max-height: min(5vw, 30px);
    position: absolute;
    transform: translate(-50%, -50%);
}

img.us {
    left: 20%;
    top: 53%;
}

img.uk {
    left: 45%;
    top: 40%;
}

img.zh {
    left: 78%;
    top: 55%;
}