﻿html {
    font-family: 'Nunito', sans-serif;
    font-size: 1.7vh;
    font-size: 1.7dvh;
    line-height: 1.5em;
}

body {
    margin: 0;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

section {
    margin: 0;
    padding: 0;
}

span[data-location] {
    cursor: pointer;
    text-decoration-style: dashed;
    text-decoration-line: underline;
    text-decoration-color: #bfbfbf;
    text-decoration-thickness: 0.07em;
    text-underline-offset: 0.3em;
}

span[data-location]:hover {
    color: red;
}

header {
    height: min-content;
    margin: 0;
    padding: 0.5em;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
}

#details {
    padding: 0.4em;
    height: min-content;
}

#map {
    flex: 1;
}

.inforow {
    height: min-content;
    display: flex;
    flex-direction: row;
    font-size: 0.6em;
    justify-content: space-around;
}

.inforow div {
    margin-left: 1em;
    margin-right: 1em;
}

.warning {
    color: #d50000;
}