body {
  padding: 0;
  margin: 0;
}
:root{
    --main-color: orange
}
.flex{
  display: flex;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.flex-column {
  flex-direction: column;
}
.justify-around{
  justify-content: space-around;
}
.flex-1>*{
  flex:1;
}
@media screen  and (max-width:700px) {
  .columnWhen700{
    flex-direction:column
  }
}
main {
  display: flex;
  overflow-x: scroll;
}
nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
article {
  height: 100vh;
  min-width: 100vw;
  background-color: var(--main-color);
  position:relative;
  overflow-y: auto;
  padding: 0 10vw;
  box-sizing: border-box;
}
/* .b:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
 
  background-size: cover;
  opacity: 0.2;
} */
.card {
  position: relative;
  background: linear-gradient(180deg, #fff3e9, rgba(170, 62, 57, 0.4));
  background-color: #f1cdba;
  margin: 0 auto;
  border: 1.46vh solid #aa3e39;
  /* &:before{
     background: url(./static/shape.png);
  } */
}
.icon-block {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  top: 2rem;
  background: linear-gradient(180deg, #aa3e39, #701c18);
  border: 0.5rem solid #f9ddbf;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-family: "Sohne Breit", sans-serif;
  font-size: 2rem;
  cursor: pointer;
  z-index: 50;
}
.info-window {
  position: relative;
  left: 1.5rem;
  z-index: 29;
  background-color: #f1cdba;
  padding: 1rem;
  border: 0.5rem solid #f9ddbf;
  transition: all 0.5s ease 0s;
  width: 200px;
  &:before{
    background: url(./static/link-shape.png);
  }
}
.absolute {
  position: absolute;
}
.p-1 {
  padding: 1rem;
}







.red {
  background-color: red;
}

.green {
  background-color: green;
}

.yellow {
  background-color: yellow;
}

.blue {
  background-color: blue;
}
