*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
}

.message {
    font-size: 14px;
    color: #6d676e;
    text-align: center;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.globe-wrapper {
    width: 280px;
    height: 280px;
    cursor: pointer;
}

#globe-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
}

.nav a {
    color: inherit;
    text-decoration: none;
}

.nav a:hover {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

@media (max-width: 860px) {
    body {
        font-size: 18px;
    }

    .nav {
        gap: 20px;
    }
}

@media (max-width: 700px) {
    body {
        font-size: 10px;
        padding: 0 24px;
    }

    .globe-wrapper {
        width: 220px;
        height: 220px;
    }

    .center-content {
        gap: 15px;
    }

    .message {
        font-size: 10px;
    }

    .nav {
        flex-direction: row;
        gap: 16px;
        text-align: center;
        white-space: normal;
    }
}
