#main-page, #loading-page, #second-user-input-page, #google-maps, #array-coffee, #array-drink {
    height: 100vh;
    width: 100vw; 
    max-width: 100%; 
    max-height: 100%; 
}

#array-coffee {
	background-image: url("../Images/coffeebg.jpg");
	background-size: cover; 
	overflow-x: scroll; 
}

#array-drink {
	background-image: url("../Images/drinkbg.jpg");
	background-size: cover; 
	overflow-x: scroll; 
}

#main-page {
    background-image: 
    linear-gradient(90deg, pink 50%, rgb(246, 187, 77) 50%)
}

#second-user-input-page {
    background-image: 
    linear-gradient(90deg, rgb(49, 60, 219) 50%, rgb(245, 233, 195) 50%)
}

#loading-page {
    background-color:beige;
    text-align: center; 
}

#address-column {
    text-align: center; 
    margin-top: 30px; 
}

#sip-logo {
    margin-top: 300px; 
}

#title {
    font-family: 'Pacifico', cursive;
    font-size: 125px; 
    text-align: center; 
    color: black;
    padding-top: 15px; 
}

#title-2 {
    font-family: 'Pacifico', cursive;
    font-size: 100px; 
    text-align: center; 
    color: black;
    padding-top: 40px; 
}

#coffee, #alc, #price, #location {
    font-family: 'Quicksand', sans-serif;
    font-size: 30px; 
    color: white; 
}

#user-input-1, #user-input-2 {
    text-align: center; 
    margin-top: 50px; 
}

.navbar {
    height: 60px;
}

#pic-column{
    text-align: center; 
}

#pic-row{
    margin-top: -30px; 
}

#nav-bar {
    height: 50px; 
}

#gm-large {
    border: solid black 3px; 
    text-align: center; 
    margin-top: 50px; 
    height: 500px; 
    width: 1000px; 
}

#gm-row {
    display: flex; 
    justify-content: center;  
}

#result-1 {
    text-align: center; 
}

#options-column {
    margin-top: 50px;
    font-family: 'Pacifico', cursive;
	font-size: 30px; 
	color: white; 
	overflow: visible !important
}

.card {
    height: 220px; 
}

#option-2 {
    margin-top: 20px; 
}

#description-1, #description-2 {
	border: solid black 3px; 
	background-color: white; 
	color: black; 
	font-family: 'Quicksand', sans-serif;
	height: 100%; 
}

#gm-content {
    position: absolute; 
    top: 0px; 
    width: 100%; 
    text-align: center; 
}

#sub {
	font-family: 'Quicksand', sans-serif;
}

#next {
	margin-top: 15px; 
	text-align: right; 
	margin-bottom: 15px; 
}

#next-button-1, #next-button-2, #go-back {
	border-radius: 12px; 
	width: 200px; 
	font-family: 'Pacifico', cursive;
	color: white; 
	font-size: 30px; 
}

#go-back {
	border-radius: 12px; 
	width: 100px; 
	font-family:'Pacifico', cursive;
}

#go-back-row {
	text-align: right; 
	margin-top: 500px; 	
}

#search {
	font-family: 'Pacifico', cursive;
	width: 70px; 
	border-radius: 12px; 
	font-size: 30px; 
	color: black; 
}

#option-content {
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1; 
	margin-top: 5%; 
	border: solid black 1px; 
}

#sip-logo2 {
	margin-top: 0px; 
	margin-top: -50px; 
}

#sip-logo-column {
	text-align: center; 
}

#ddPrice, #ddLocation {
	background-color: transparent !important;
	border: none !important;
	color: black; 
	font-size: 30px; 
	
}

/* Styling for cloud background */
*{ margin: 0; padding: 0;}

#clouds{
	padding: 100px 0;
	background: #c9dbe9;
	background: -webkit-linear-gradient(top, #c9dbe9 0%, #fff 100%);
	background: -linear-gradient(top, #c9dbe9 0%, #fff 100%);
    background: -moz-linear-gradient(top, #c9dbe9 0%, #fff 100%);
    position: relative; 
}

/*Time to finalise the cloud shape*/
.cloud {
	width: 200px; height: 60px;
	background: #fff;
	
	border-radius: 200px;
	-moz-border-radius: 200px;
	-webkit-border-radius: 200px;
	
    position: relative; 
}

.cloud:before, .cloud:after {
	content: '';
	position: absolute; 
	background: #fff;
	width: 100px; height: 80px;
	position: absolute; top: -15px; left: 10px;
	
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-moz-transform: rotate(30deg);
}

.cloud:after {
	width: 120px; height: 120px;
	top: -55px; left: auto; right: 15px;
}

/*Time to animate*/
.x1 {
	-webkit-animation: moveclouds 15s linear infinite;
	-moz-animation: moveclouds 15s linear infinite;
	-o-animation: moveclouds 15s linear infinite;
}

/*variable speed, opacity, and position of clouds for realistic effect*/
.x2 {
	left: 200px;
	
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
	opacity: 0.6; /*opacity proportional to the size*/
	
	/*Speed will also be proportional to the size and opacity*/
	/*More the speed. Less the time in 's' = seconds*/
	-webkit-animation: moveclouds 25s linear infinite;
	-moz-animation: moveclouds 25s linear infinite;
	-o-animation: moveclouds 25s linear infinite;
}

.x3 {
	left: -250px; top: -200px;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 20s linear infinite;
	-moz-animation: moveclouds 20s linear infinite;
	-o-animation: moveclouds 20s linear infinite;
}

.x4 {
	left: 470px; top: -250px;
	
	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	transform: scale(0.75);
	opacity: 0.75; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 18s linear infinite;
	-moz-animation: moveclouds 18s linear infinite;
	-o-animation: moveclouds 18s linear infinite;
}

.x5 {
	left: -150px; top: -150px;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 20s linear infinite;
	-moz-animation: moveclouds 20s linear infinite;
	-o-animation: moveclouds 20s linear infinite;
}

@-webkit-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}
@-moz-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}
@-o-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}

.rotate-center-left {
	-webkit-animation: rotate-center 0.6s ease-in-out both;
	        animation: rotate-center 0.6s ease-in-out both;
}

.rotate-center-right {
	-webkit-animation: rotate-center 0.6s ease-in-out reverse both;
	        animation: rotate-center 0.6s ease-in-out reverse both;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-6-11 16:34:56
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
 @-webkit-keyframes rotate-center {
	0% {
	  -webkit-transform: rotate(0);
			  transform: rotate(0);
	}
	100% {
	  -webkit-transform: rotate(360deg);
			  transform: rotate(360deg);
	}
  }
  @keyframes rotate-center {
	0% {
	  -webkit-transform: rotate(0);
			  transform: rotate(0);
	}
	100% {
	  -webkit-transform: rotate(360deg);
			  transform: rotate(360deg);
	}
  }

  .pajaro{
	background:black;
	border-radius: 50% 50% 20% 20%;
	color:white;
	line-height:20px;
	letter-spacing: 2px;
	font-size:0.8em;
	text-align:center;
	position:absolute;
	top:50%; left:50%;
	margin-top:-20px; margin-left:-10px;
	width:15px; height:15px;
	animation:planeo 0.8s linear infinite;
	z-index:999;
  }
  
  .pajaro:after,
  .pajaro:before{
	content:"";
	position:absolute;
	top:50%; left:50%;
  }
  
  /*------------------------------------------------------ bird wings
  */
  
  .pajaro:after{
	border-radius: 100% 100% 0 0;
	box-shadow: inset 0px 5px 0 black;
	width:100px; height:100px;
	margin-top:-7px; margin-left:-50px;
	transform-origin: 100% 0%;
	animation:alas 3s linear infinite;
  }
  
  /*------------------------------------------------------ bird beak
  */
  
  .pajaro:before{
	background:#FFC37F;
	border-radius: 100% 0% 20% 0%;
	margin-top:3px; margin-left:-4px;
	width:6px; height:6px;
	transform:rotateZ(45deg);
  }
  
  /*------------------------------------------------------ wings animation
  */
  
  @keyframes alas {
	50%{
	  transform:rotateX(-1440deg);
	}
  }
  
  /*------------------------------------------------------ bird animation
  */
  
  @keyframes planeo {
	40%{
	  transform:rotateZ(2deg) translateX(2px) translateY(10px) translateZ(0);
	  line-height:16px;
	  font-size:0.6em;
	}
	80%{
	  transform:rotateZ(-2deg) translateX(5px) translateY(8px) translateZ(0);
	}
}

#pajaro1 {
	  margin-top: -200px; 
	  margin-left: 100px; 
}

#pajaro2 {
	  margin-top: -300px; 
	  margin-left: -200px; 
  }

.container{
	width:500px;
	height:500px;
}

.super-outside{
	width: 540px;
	height: 540px;
	margin:0 auto;
	position: absolute;
  }
  .pin-wrapper{
	position:relative;
	width:90%;
	height:90%;
	top:0;
	left:0;
  }
  
  #northeast{
	width: 35px;
	height: 35px;
	margin:0px;
	padding:0px;
	position: absolute;
	left: 250px;
	top: 150px;
  }
  
  
  #southheast{
	width: 35px;
	height: 35px;
	margin:0px;
	padding:0px;
	
	position: absolute;
	left: 150px;
	top: 350px;
  }
  
  .pin {
	width: 30px;
	height: 30px;
	border-radius: 50% 50% 50% 0;
	background: #ff1515;
	border: solid black 3px; 
	position: absolute;
	transform: rotate(-45deg);
	left: 0px;
	top: -100px;
	margin: 0px 0px;
  }
  .pin:after {
	content: "";
	width: 14px;
	height: 14px;
	margin: 8px 0 0 8px;
	background: #e6e6e6;
	position: absolute;
	border-radius: 50%;
  }
  
  .bounce {
	animation-name: bounce;
	animation-fill-mode: both;
	animation-duration: 1s;
  }
  
  .pulse {
	background: #d6d4d4;
	border-radius: 50%;
	height: 14px;
	width: 14px;
	position: absolute;
	left:0px;
	top: 0px;
	margin: 34px 0px 0px 8px;
	transform: rotateX(55deg);
	z-index: -2;
  }
  .pulse:after {
	content: "";
	border-radius: 50%;
	height: 40px;
	width: 40px;
	position: absolute;
	margin: -13px 0 0 -13px;
	animation: pulsate 1s ease-out;
	animation-iteration-count: infinite;
	opacity: 0;
	box-shadow: 0 0 1px 2px #00cae9;
	animation-delay: 1.1s;
  }
  
  @keyframes pulsate {
	0% {
	  transform: scale(0.1, 0.1);
	  opacity: 0;
	}
  
	50% {
	  opacity: 1;
	}
  
	100% {
	  transform: scale(1.2, 1.2);
	  opacity: 0;
	}
  }
  
  @keyframes bounce {
	0% {
	  opacity: 0;
	  transform: translateY(-2000px) rotate(-45deg);
	}
  
	60% {
	  opacity: 1;
	  transform: translateY(30px) rotate(-45deg);
	}
  
	80% {
	  transform: translateY(-10px) rotate(-45deg);
	}
  
	100% {
	  transform: translateY(0) rotate(-45deg);
	}
	}
	
	#go-home{
		font-family: 'Pacifico', cursive; 
		font-size: 30px; 
		margin-top: 5px; 

	}

 