@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap");

:root {
    --dark: #303030;
    --medium: #8ab4f8;
    --light: #cddffc;
}

body {
    font-family: Times, serif;
    margin-top: 5rem;
    margin-bottom: 3rem;
    background-color: var(--light);
    color: var(--dark);
    font-family: "Rubik", sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    background-color: var(--medium);
    color: var(--dark);
}

.top {
    font-size: 1.25rem;
}

#map {
    height: 600px;
    width: 100%;
    max-height: 100vh;
}