* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    color: #016a7c;
    font-family: 'Finlandica', sans-serif;
    background-color: #016a7c;
    overflow-x: hidden;
}

.fakewrapper {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(1,147,172,1) 0%, rgba(1,106,124,1) 65%, rgba(1,106,124,1) 100%);
}

.fakewrapper-inside {
    width: 100vw;
    height: 100vh;
    background-image: url("../img/fake-wrapper-bg.svg");
    background-repeat: no-repeat;
    background-position: center -65vh;
    background-size: 130vh;
}

.wrapper {
    min-height: 100vh;
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;

    -webkit-box-shadow: 0 0 15px 0 rgba(0,44,60,0.5);
    -moz-box-shadow: 0 0 15px 0 rgba(0,44,60,0.5);
    -o-box-shadow: 0 0 15px 0 rgba(0,44,60,0.5);
    box-shadow: 0 0 15px 0 rgba(0,44,60,0.5);

    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.container {
    text-align: center;
    margin: 3vh 0;
}

#game,
#text,
#map {
    padding: 0 2vh;
    font-size: 20px;
}

.team-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 380px;
    margin: auto;
}

.team-card {
    margin: 1vh;
}

#map img {
    margin: 2vh 0;
}

#game .capsule-wrapper {
    width: 300px;
    height: 450px;
    margin: 2vh auto;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    -o-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    overflow: hidden;
}

#links {
    padding: 0 2vh;
}

#links a,
#links a:visited {
    color: #016a7c;
    font-size: 24px;
}

#links a:hover {
    text-decoration: none;
}

