@import "./colors.css";

body {
    background-color: #fefefe;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Fonts and line heights for headings and body text */

* {
    box-sizing: border-box;
}

.hero-title {
    line-height: 1.2;
    letter-spacing: -1px;
    font-size: 2.5rem; 
    font-weight: normal; 
    margin: 0 1.5rem; 
    color:white;
}

img {
    max-width: 100%;
}

p {
    line-height: 1.5;
}

.map > iframe {
    border-radius: .5rem;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: 100%;
}

layout-main {
    display: block;
    margin: auto;
    width: 1250px;
    max-width: 100%;
    padding: 0 1em;
}

/* Custom semantics */
grid {
    display: grid;
}

.grid {
    display: grid;
}

flex {
    display: flex;
}

.flex {
    display: flex;
}

/* Utility classes */

.flex-direction-row {
    flex-direction: row;
}

.flex-direction-row-reverse {
    flex-direction: row-reverse;
}

.flex-direction-column {
    flex-direction: column;
}

.flex-direction-column-reverse {
    flex-direction: column-reverse;
}

.flex-wrap-wrap {
    flex-wrap: wrap;
}

.align-items-flex-start {
    align-items: flex-start;
}

.align-items-center {
    align-items: center;
}

.align-items-flex-end {
    align-items: flex-end;
}

.align-items-space-between {
    align-items: space-between;
}

.align-items-space-around {
    align-items: space-around;
}

.align-items-space-evenly {
    align-items: space-evenly;
}

.justify-content-flex-start {
    justify-content: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-flex-end {
    justify-content: flex-end;
}

.justify-content-space-between {
    justify-content: space-between;
}

.justify-content-space-around {
    justify-content: space-around;
}

.justify-content-space-evenly {
    justify-content: space-evenly;
}

.gap-25 {
    gap: .25em;
}

.gap-50 {
    gap: .5em;
}

.gap-75 {
    gap: .75em;
}

.gap-100 {
    gap: 1em;
}

.gap-200 {
    gap: 2em;
}

.gap-300 {
    gap: 3em;
}

.gap-400 {
    gap: 4em;
}

.gap-500 {
    gap: 5em;
}

.flex-grow-100 {
    flex-grow: 1;
}

.flex-grow-200 {
    flex-grow: 2;
}