/*added this section from Alexc */
body, html {
  height: 100%;
}

/*added this text section */
body {
    background: #fff;
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    text-align: center;
     line-height: 1;
}
h1, h2, h3, h4, h5, h6 {
    color: #222;
    text-align: center;
     line-height: 1;
}
/*cervelo red #dc1509 */
h1 {
  color: #dc1509;
  font-weight: 600;
   line-height: 1;
  text-transform: uppercase;
  font-size: 100px;
}
/*cervelo blue #001e64*/
h2 {
  color: #001e64;
  font-weight: 300;
  text-align: center;
  font-size: 100px;
}
h3{
	 color: #fff;
  text-align: center;
  margin-top: 1.3em;
}
p{
	color: #fff;
  text-align: center;
  margin-top: 1em;
}
header{
	padding: 2em 2em 4em;
	
	background: rgba(255, 255, 255, 0.5);
}

nav a{
	color: #000;
	text-decoration: none;
	border-color: #ffffff;
	border-radius: 4px;
	display: inline-block;
	padding: 1em 2em 1em;
	margin-right:22px;
	background: rgba(255, 255, 255, 0.5);
}
body{
	background: rgba(255, 255, 255, 0.5);
	background-repeat: no-repeat;
	background-position: center;
  	background-size: cover;
	height: 100%;
}

/*end alex styling*/

/*original code for carousel */
.carousel {
	position:  relative;
	height: 1600px;
	width: 80%;
	margin: 0 auto;
}

.carousel__image {
	width:  100%;
	height: 100%;
	object-fit: cover;
}

.carousel__track-container {
	background: lightgrey;
	height: 100%;
	position: relative;
}

.carousel__track {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	height: 100%;
	transition: transform 250 ms ease-in;
}

.carousel__slide {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
}

.carousel__button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	cursor: pointer;
}

.carousel__button--left {
	left: -40px;
}

.carousel__button--right {
	right: -40px;
}

.carousel__button img {
	width: 12px;
}
.carousel__nav {
	display: flex;
	justify-content: center;
	padding:  10px 0;
}

.carousel__indicator {
	border: 0;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	background: rgba(0,0,0,.3);
	margin: 0 12px;
}

.carousel__indicator.current-slide {
	background: rgba(0,0,0,.75);
}