
.flex {
	display: flex;
	width: 100%;
	margin top: 20px;
	margin-bottom: 20px;
	margin-right: 0;
	margin-left: 0;
}

.yellow-2 {
	background-color: #f4bd00;
	width: 200px;
	height: 250px;
	padding-top: 750px;
	padding-left: 15px;
	font: normal 12px Futura, Arial black, sans-serif;
	color: white;
}

.blue {
	background-color: #5ab3ec;
	width: 600px;
	height: 200px;
	opacity: 0.7
	padding-left: 200px;
}

.space-around {
	justify-content: space-around;
}

.space-between {
	justify-content: space-between;
}

.flex-end {
	justify-content: flex-end;
}

.flex-vertical {
	display: flex;
	height: 400px;
	flex-direction: column;
}

.flex-start {
	justify-content: flex-start;
}


.black-bg {
	background-color: black;
	width: 450px;
	height: 450px;
	margin-top: 0px;
	justify-content: center;
	position: relative;
	margin-left: 500px;
	margin-top: 200px;

}

.center {
	justify-content: center;
}


.title {
    font: normal 70px Futura, Arial black, sans-serif;
    margin-left: 450px;
    margin-top: 200px;
    color: lightgray;
}

.shadow {
    font: normal 131px Futura, Arial black, sans-serif;
    margin-left: 105px;
    margin-top: -190px;
    color: black;
}

.h1 {
    font: normal 14px Futura, Arial black, sans-serif;
    margin-left: 700px;
    margin-top: -1150px;
    color: #606060;
}

.image {
	margin-left: 500px;
	margin-top: 900px;
	position: absolute;
}

.image-1 {
	margin-left: 700px;
	margin-top: 300px;
	position: absolute;
}

.image-2 {
	margin-left: 400px;
	margin-top: 450px;
	position: absolute;
}

img {
  -webkit-transition: -webkit-transform .8s ease-in-out;
          transition: transform .8s ease-in-out;
          width:100px;
          height: 100px;
}
img:hover {
  -webkit-transform: rotate(130deg);
          transform: rotate(300deg);
}

