 /*all images are taken by Ashley Li unless otherwise stated*/
@charset "UTF-8";
h1 {
    text-align: center; 
	font-size: 5em;
	background-color: #da627d;
	padding:400px;
	margin-bottom: 1px;
	
}

h2 {
	margin-top:10%;
}

.whitebox	{
	border-style: solid;
	border-width: 10px;
	border-color: white;
	border-radius: 5px;
	margin-left: auto;
	margin-right:auto;
	margin-top: 8%;
	margin-bottom: 8%;
	background-color: white;
	width: 67%;
}

body {
  background-image: url("Images/sunset10.png");
 /*image from: https://www.instagram.com/zerbawy.photography/p/CxV2xgwLjBU/*/
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
	font-size: 1.5em;
	margin: 0;
	
}

.floatright {
	float: right;
	margin-left: 5%;
}

.clearfix {
	overflow: auto;
}

.floatleft {
	float: left;
	margin-right: 5%;
}

ul {
	background-color: white;
	margin-top:0px; 
	list-style-type: none; 
	overflow: hidden; /* content stays within the unordered list*/
	position: fixed;
  	top: 0;
  	width: 100%;
  	margin: 0;
  	padding: 0;
  	z-index: 10;
  	
}

ul li {
	float: right;
}

ul li a {
	color:#3d405b; /* change when background is finalized*/
	text-decoration: none;
	padding: 14px 18px;
	display: block;
}

ul li a:hover {
	background-color: #e0dcbc; /* change when background is finalized*/
}

p {
	text-align:center;
}

.font {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3d405b;
}

a {
	color: #81B29A;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: 3.85%;
  margin-right: 3%;
}

.flex-container > div {
  background-color: #f1f1f1;
  width: 400px;
  height: 300px;
  margin: 25px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
}

.flex-container a {
	color:#3d405b; /* change when background is finalized*/
	text-decoration: none;
	padding: 113px 50px;
	display: block;
}

.flex-container a:hover {
	background-color: #e0dcbc; /* change when background is finalized*/
}

.left {
	margin-left: 10%;
  margin-right:5%;
}

.right {
	margin-left: 5%;
  margin-right:10%;
}

.floatmiddle {
	margin-left: 18%;
	margin-right: 10%;
}

.center{
	text-align:center;
}

.four {
	width: 40%;
}

.padding100 {
	padding-right: 100px;
}

.padding100l {
	padding-left: 100px;
}

.weirdpadding {
	padding: 14px 18px;
}

.width100 {
	width: 100%;
}

.width35 {
	width: 35%;
}

.width50 {
	width: 50%;
}

.width45 {
	width:45%;
}

.mtop5 {
	margin-top:3%;
}

.width900 {
	width: 900px;
}

/* carousel container */
.carousel {
	width: 100%; /* full width of the parent/container */
	max-width: 800px; /* optional max width */
	overflow: hidden; /* hide overflow */
	margin: auto; /* center carousel */
	position: relative;
}

/* slides container- row of images */
.slides {
	display: flex;
	transition: transform 0.5s ease;  /* smooth sliding animation over half a second */
}

.slides img {
	width: 100%;
	height: auto; /* maintain aspect ratio */
	flex-shrink: 0; /* prevent images from shrinking */
}

/* Below is taken from Mrs. Taricco's laptop, edited to fix some bugs */
.buttons {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}

button {
	background: white;
	color: #E07A5F;
	border: none;
	padding: 20px 30px;
	cursor: pointer;
	font-size: 2em;
}