:root {
  --skrift: #F5DEB3;
  --baggrund: #708090;
}

ul {
  list-style: none;
}

* {
  box-sizing: border-box;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

[class*="col-"] {
  float: left;
  padding: 0px;
  /* border: 1px solid grey;  
  border: 1px solid red;*/
  margin-bottom: 5vh;
}

html {
  font-family: "Lucida Sans", sans-serif;
  background-color: var(--baggrund);
  color: var(--skrift);
}

.bubble {
	position: relative;
	text-align: center;
	display: block;
    margin-left: auto;
    margin-right: auto;
	background-color: yellow;
	width: 40%;
	border-radius: 200vh;
    box-sizing: border-box;
    border: 1vh solid var(--skrift);
	margin-top: 1vh;
}

.navn {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  font-size: 2vh;
  border-radius: 5vh;
  background-color: var(--skrift);
  padding: 0.5vh 0.5vh 0.5vh 0.5vh;
  color: black;
  }

.overskrift {
  text-align: center;
  font-size: 5vh;
  color: var(--skrift);
  }

.overskriften {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 7vh;
  }

img {
  width: 100%;
  height: auto;
  display: block
}

.face {
	display: block;
	border-radius: 200vh;
	filter: grayscale(100%);
}

.billede {
	display: block;
	border-radius: 200vh;
	filter: grayscale(100%);
}

.frontimg {
	display: block;
	filter: grayscale(20%);
	opacity: 60%;
	margin: auto;
}
.front {
	border: 2vh solid var(--skrift);
}

.front1 {
	height: 100vh;
}

.bubble:hover .face {
  filter: grayscale(0%);
}

.bubble:hover .navn {
  opacity: 0%;
}

.tour-billede {
	border: 1vh solid var(--skrift);
	margin: 0;
	padding: 0;
}

.tour-info {
	font-size: 2vh;
	padding: 0;
	
}

@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}