﻿html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
}

a {
    text-decoration: none;
    color: #61849c;
}

    a:hover {
        text-decoration: underline;
    }

    a.active,
    a.visited {
        font-weight: bold;
        color: #61849c;
    }

#header {
    border-bottom: 2px solid #61849c;
    color: #61849c;
    height: 20px;
    padding: 20px;
    text-align: right;
}

    #header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

#links {
    display: flex;
    gap: 40px;
    padding: 0 40px;
}

#map {
    position: relative;
    height: 100%;
}

#app {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #2c3e50;
    min-height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}

#brand {
    font-size: 1.5em;
    font-weight: bold;
}

#promo {
    position: absolute;
    bottom: 50px;
    background-color: red;
    right: -65px;
    transform: rotate(-45deg);
    z-index: 1;
}

#promo-text {
    border: 2px solid white;
    color: white;
    font-size: 14px;
    font-family: sans-serif;
    font-weight: bold;
    margin: 2px;
    padding: 0 70px;
}

#promo a:hover {
    text-decoration: none;
}

#copyright {
    font-family: Arial, sans-serif;
    font-size: 12px;
    background-color: rgb(255 255 255);
    box-shadow: 1px 2px 4px rgb(0 0 0 / 70%);
    position: absolute;
    display: flex;
    gap: 5px;
    padding: 5px;
    bottom: 0;
    left: 0;
    right: 0;
}
