@font-face {
    font-family: "Awo";
    src: url(../fonts/Audiowide-Regular.woff2);
}
@font-face {
    font-family: "italicTitles";
    src: url(../fonts/Exo2-BlackItalic.woff2);
}
@font-face {
    font-family: "docuText";
    src: url(../fonts/Exo2-Black.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Awo", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #1e1e1e;
}

header {display: flex; justify-content: center;}

header a {
    color: #999;
    text-decoration: none;
    margin: 50px;
    padding: 10px 20px;
    background-color: #0a0a0a;
    border: 1px solid #444;
    border-radius: 14px;
    transition: transform 0.18s, box-shadow 0.18s;
}
header a:hover {transform: translateY(-2px); box-shadow: 0px 5px 10px #444;}

main {
    text-align: center;
}
#worldmap {
    width: 1200px;
    height: 675px;
    overflow: auto;
    position: relative;
    border: 2px solid #555;
    border-radius: 20px;
    margin: 0 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#worldmap::-webkit-scrollbar {
    display: none;
}
#map {
    display: block;
    width: 200%;
    height: auto;
    max-width: none;
}