*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: 0;
}
:root{
  font-size: 16px;
  color: #36393e;
}
a{
  color: currentColor;
}
html {
  font-family: sans-serif;
}

body{
  margin: 2rem;
}
/*  */
header{

}
nav{
  /* background: gray; */
}

/* Flex Container */
.raster-flex{
  display: flex;
  justify-content: space-between;
  /* border: 3px solid #36393e; */
}

/* Flex-items */
.flex-item-cards{
  flex-grow: 2;
  /* This is also a flex-container */
  display: flex;
  flex-wrap: wrap;
  /* border: 3px solid #36393e; */
}
#map{
  /* Be the height of my window */
  height: 100vh;
  /* Don't grow, don't shrink, width */
  flex-grow: 0 0 400px;
  /* !important Overrides google maps js positioning */
  position: sticky !important;
  top: 0 !important;
  width: 50vw;
  text-align: center;
  background-size: cover;
  background-position:center;
  margin-left: 1.5rem;
}
/* City-cards und flex-items 2 */
.card {
  /* Defines the width of the card */
  flex: 0 0 33%;
  height: 250px;
  margin: 5px;
  font-size: 1.2rem;
  /* border: 3px solid #36393e; */
  background: #eee;
  text-align: center;
  align-self: center;
  padding: 10% 0;
  /* background-size: cover;
  background-position:center;
  box-shadow: 0 0 10px rgba(0,0,0, 0.2);
  margin: 10px 0px; */

}
.logo{
  font-family: 'montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.6rem;
  padding: 2rem 0 1rem 0;
}

/* Media Queries */

@media (max-width: 992px){
  .card{
    flex: 0 0 50%;
  }
}

@media(max-width: 768px){
  .card{
    flex: 0 0 100%;
  }
}
