* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    background-color: rgb(191, 202, 216);
}

html,
body {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4 {
    font-size: 1rem;
    font-weight: 400;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100vw;
    height: 100vh;
}

.road {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 3rem;
    background-color: lightgray;
    z-index: 1;
    border-top: 1px dashed gray;
}

.buildings {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1rem;
    bottom: 0;
    width: max-content;
    height: 100%;
    z-index: 2;
    margin-bottom: 2rem;
}

.building {
    position: relative;
    width: 150px;
    height: 300px;
    background-color: whitesmoke;
    border: 1px dashed gray;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.building:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.building iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

a {
    text-decoration: none;
}

.bike {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin-inline: auto;
    width: fit-content;
    line-height: 0.5rem;
    z-index: 2;
    font-family: SFMono-Regular, monospace;
    font-size: 14px;
    white-space: pre;
    color: gray;
}

.sun {
    position: fixed;
    bottom: -30vw;
    right: 50%;
    width: 500px;
    height: 70vw;
    min-width: 70vw;
    border-radius: 50%;
    background-color: gold;
    box-shadow: 0 0 10px gold;
    border: 1px dashed gray;
    z-index: 0;
    transform: translateX(50%);
}

::selection {
    color: gray;
}