body {
  background-color:#2E1A3F;
  background-size: cover;
  background-attachment: fixed;
  margin: 0;
}

.content {
  max-width: 1000px; 
  margin: 0 auto;
}

.navbar {
  background-color:#f0f8ffff; 
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.navbar-content {
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-left {
  width: 256px;
}

.navbar-center {
  display: flex;
  gap: 20px;
}

.navbar-right {
  display: flex;
  justify-content: right;
  margin: 10px;
}

.navbar a {
  color: #ec2a8a;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  
  display: flex;
  gap: 20px;
}

.copyright {
  font-size: 12px;
  text-align: center;
}

.container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.container:nth-child(even) {
	flex-direction: row-reverse;
}

@media (max-width: 1000px) {
  .container {
    flex-direction: column;
  }
  
  .container:nth-child(even) {
	flex-direction: column;
  }
}

.text {
	flex: 1;
	padding: 0px 20px 0px 20px ;
}

.image {
	flex: 1;
	display: flex;
	justify-content: center;
	padding: 20px;
}
.image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

h1 {
  color: #f0f8ffff;
  font-size: 36px;
  font-family: Helvetica;
}
p {
  color: #f0f8ffff;
  font-size: 20px;
  font-family:Helvetica;
  border-radius: 10px;
}

a {
  font-size: 18px;
  font-family:Helvetica;
  color:#d4145a;
}
