html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: 'Ubuntu', sans-serif;
background: rgb(11, 9, 64);
}

header {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 50px;
    background: rgb(255, 167, 99);
    padding: 0%;
    z-index: 2;
}

h1 {
    font-size: 2em;
    margin: .5%;
    color: rgb(11, 9, 64);
}

#map-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
}
#map {
    width: 100%;
    height: 100%;
}

#content-container {
    position: fixed;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
}

#content {   
    width: 100%;
    height: 100%;
    margin-top: 50px;
    overflow: hidden;
}

.places  {
    font-family: 'Ubuntu', sans-serif;
    margin-top: 0px;
    background-image: url(img/circuit2.jpg);
    background-position: center;
    height:100%;
}

.images  {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    margin-top: 20px;  
}

.images img{
    
    max-width: 99%;
}

.back {
    background-color: rgba(44, 85, 232, 0.9);
    padding: 10px;     
}

.buttons{
position: absolute;
   top: 8%;
   right: .5%;
   display: inline;
   text-align: right;
}

button  {
   
   font-size: 1em;
   padding: 1%;
   z-index: 10;
   background: rgb(255, 167, 99);
   color: rgb(11, 9, 64);
   opacity: 100;
}

.marker {
    background-image: url(img/memory-card.png);
    background-size: cover;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.mapboxgl-popup {
    max-width: 200px;
}
.mapboxgl-popup-content {
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

/*for css fades*/
.show {
  transition: opacity 1000ms;
  opacity: 1;
}
.hide {
  opacity: 0;
}

/* unvisited link */
a:link {
  color: rgb(255, 167, 99);
}

/* visited link */
a:visited {
  color: rgb(255, 167, 99);
}
