/*Yleiset*/
body {
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.basic {
    background-image: url(Kartta.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% auto;
}

h1, h2 {
    text-align: center;
    color: #00a651;
}

p {
    text-align: center;
}

/*Yläpalkki*/
.topbar {
    box-sizing: inherit;
    display: inline-block;
    width: 100%;
    /*color: #f57e10;    Oranssi*/
    text-align: center;
}

.topbar a {
    text-decoration: none;
    color: #00a651;
}


/*Linkkipalkki*/
.linkbar {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.linkbar div {
    text-decoration: none;
    color: white;
    border: 1px solid white;
    background-color: #00a651;
    max-width: 100%;
    min-width: 24.8%;
}

.linkbar a {
    text-decoration: none;
    color: white;
    margin-left: 10px;
}

.content div div {
    vertical-align: middle;
}


/*KELIKAMERAT*/
.kelikamerat {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin: 0;
}

.kelikamerat div {
    max-width: 25%;
}

@media (max-width: 1080px) {
    .kelikamerat div {
        max-width: 50%;
    }
}

@media (max-width: 800px) {
    .kelikamerat div {
        max-width: 100%;
    }

    .linkbar div {
        min-width: 49.7%;
    }
}

@media (max-width: 530px) {
    .linkbar div {
        min-width: 99.7%;
    }
}

@media (max-aspect-ratio: 2480/3507) {
    .basic {
        background-size: auto 100%;
    }
}