@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Lobster&family=Ms+Madi&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #1e1f1f;
  --bg2: #0b0f14;
  --text: #e7edf5;
  --grey: #b5b5b6;
  --main-blue: #40b9f2;

  --main-font: "Roboto", sans-serif;
  --statement-font: "Ms Madi", cursive;
  --code-font: "Google Sans Code", monospace;

  --banner_img: url(../img/banner/banner_city_1.jpg);
  --banner_img_2: url(../img/banner/bildet_1.jpg);
}

.heading {
  font-size: 30px;
  font-weight: 700;
}
p,
span {
  line-height: 1.5;
  font-weight: 200;
}

html,
body {
  min-height: 100%;
  margin: 0;
  font-family: var(--main-font);
  background: var(--bg);
  color: var(--text);
}

#app {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.statement-font {
  font-family: var(--statement-font);
  font-weight: 400;
  font-style: normal;
}
.remove-margin {
  margin: 0;
}

.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fullSize {
  height: 100%;
  width: 100%;
}

.page-margin,
.info-page-width-cap {
  padding-left: 5%;
  padding-right: 5%;
}

.main-page {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.list {
  list-style: disc;
  padding-left: 1rem;
}
.flex-col-1rem {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
button {
  all: unset;
  cursor: pointer;
}

.bottom {
  margin-top: auto;
}

.top-margin {
  margin-top: 120px;
}

@media screen and (min-width: 1300px) {
  .info-page-width-cap {
    padding-left: 20%;
    padding-right: 20%;
  }
}
