:root {
	--milkchocolate:#efe7d4;
	--royalblue:#1a0088;
	--oscargreen:#989936;
	--zooorage:#ff5e32;
}

html {
	background-color: var(--milkchocolate);
}

section {
	padding: 50px 0;
	margin: 15px auto;
}

header{
	display:flex;
	flex-direction:row;
	justify-content:space-between;
	align-items: center;
	background-color: var(--milkchocolate);
}

header nav ul{
	list-style:none;
	display:flex;
	flex-direction:row;
}

nav ul li{
	list-style:none;
	margin:15px;
}

nav ul li a:link, nav ul il a:visited {
	font-family:"roboto";
	font:24px;
	background-color:var(--zooorage);
	color:#fff;
	padding:10px 15px;
	border-radius:7px;
	text-decoration:none;
}

nav ul li a:hover{
background-color:var(--royalblue);
}

nav ul li a:active{
background-color:var(--royalblue);
}

img {
	border-radius: 10px;
}

h1 {
	font-family: "Shrikhand";
	text-align: center;
	font-size: 50pt;
	color: var(--milkchocolate);
}

h2 {
	font-family: "Shrikhand";
	color:var(--royalblue);
	font-size: 24pt;
}

h3 {
	font-family: "Shrikhand";
	margin: 15px auto;
	font-size: 40pt;
	color: var(--royalblue);
}

p {
	font-family: "roboto";
	font-size: 12pt;
}

.margin {
	width: 80%; 
	margin: 0 auto;
}

.herobanner{
	background: url("../images/herobanner2.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100vw 100vh;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -13px;
}

.tempborder {
	border:2px solid;
}

.desc {
	display:flex;
	flex-direction: row;
	margin: 15px auto;
	width:960px;
	display: flex; 
	justify-content: space-between; 
	align-items: center;
	gap: 20px;
}

div.scroll-container {
  background-color: var(---zooorage);
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

div.scroll-container img {
  padding: 10px;
}

.accomodationscroll {
	background-color: var(--zooorage);
}

.container {
  position: relative;
}

.image {
  display: flex;
  width: 1000px;
  height: auto;
  justify-content: center;
  justify-align: center;
  align-items: center;
  align-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1000px;
  opacity: 0;
  transition: .5s ease;
  background-color: var(--oscargreen);
  border-radius: 10px;
}

.container:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.row {
 	display: flex;
	justify-align: space-between;
}

.bedrooms {
	display:flex;
	flex-direction: row;
	margin: 15px auto;
	width:960px;
	display: flex; 
	justify-content: space-between; 
	align-items: center;
	gap: 20px;
}

.orangebg {
	background-color: var(--zooorage);
}

.greenbg {
	background-color: var(--oscargreen);
}