body {
  font-family: 'Ubuntu', sans-serif;
  background: linear-gradient(to left, #750422 15%, #0D0126 85%);
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  display: flex;
  width: 90%;
  max-width: 1200px;
  margin: 20px;
}
.leftbar {
	flex: 1;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0);
	border-radius: 10px;
	margin-right: 20px;
	position: -webkit-sticky;
	position: sticky;
	top: 20px;
	align-self: flex-start;
}
.rightbar {
  flex: 2;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
}
h1 {
  color: #E55C88;
  margin-top: 0;
}
.title {
	color: #A6032F;
	font-size: 3em;
}
h2 {
  color: #E55C88;
}
.stats-card {
	background-color: #750422;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}
.launch-card {
  background-color: #1A083D;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}
.launch-card-content {
  z-index: 1;
  margin-right: 220px;
}
.launch-card img.logo {
  position: absolute;
  right: 30px;
  top: 20%;
  transform: translateY(-50%);
  width : 200px;
  height : 200px;
  z-index: 2;
}
.launch-card img.status {
  position: absolute;
  right: 30px;
  bottom: 340px;
  width : 100px;
  height : auto;
  z-index: 3;
}
.launch-card h2 {
  color = #E55C88;
}
.launch-card h3 {
  color = #FFFFFF;
}
.image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1);
}
.countdown {
  margin-top: 20px;
  font-size: 30px;
}
.label {
  position: absolute;
	top: 20px;
	right: 50px;
	z-index: 2;
}
.label img {
	width: 150px;
	height: 150px;
}
#map {
  width: 100%;
  height: 150px;
  border-radius: 10px;
}