body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #c2e8ff;
}

header {
  background-color: #1d63ed;
  color: white;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

header img {
  margin-left: 20px;
  height: 200px;
  width: 200px;
  transition: all 0.2s ease-in-out;
}

header img:hover {
  scale: 1.1;
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header h1 {
  font-size: 4.5rem;
  margin: 0;
}

header p {
  font-size: 1.5rem;
  margin-top: 5px;
}

.header-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

header a button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #c2e8ff;
  color: #17191e;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

header a button:hover {
  scale: 1.1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
  gap: 30px;
  text-align: center;
}

.steps div {
  background-color: #1d63ed;
  color: white;
  padding: 20px;
  border-radius: 10px;
  align-self: stretch;
  transition: all 0.2s ease-in-out;
}

.steps div:hover {
  scale: 1.05;
}

.steps a {
  text-decoration: none;
  color: white;
}

.steps a:hover {
  text-decoration: underline;
}

.requirements {
  padding: 20px 50px;
}

.requirements h2 {
  font-size: 2.5rem;
  margin: 0;
  margin-bottom: 10px;
}

.requirements ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1.2rem;
}

.requirements a {
  color: #1d63ed;
  text-decoration: none;
}

.requirements a:hover {
  text-decoration: underline;
}

.example-projects {
  display: flex;
  flex-direction: column;
  padding: 20px 50px;
}

.example-projects h2 {
  font-size: 2.5rem;
  margin: 0;
  margin-bottom: 10px;
}

.project-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}

.project {
  background-color: #1d63ed;
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  transition: all 0.2s ease-in-out;
}

.project:hover {
  scale: 1.05;
}

.project h3 {
  text-align: center;
  font-size: 1.5rem;
  margin: 0;
  margin-bottom: 10px;
}

.project img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}

.button-container a button {
  padding: 8px 16px;
  width: 150px;
  font-size: 1rem;
  background-color: #c2e8ff;
  color: #17191e;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.button-container a button:hover {
  scale: 1.1;
}

.prize {
  display: flex;
  flex-direction: row;
  padding: 20px 50px;
}

.prize h2 {
  font-size: 2.5rem;
  margin: 0;
  margin-bottom: 10px;
}

.prize p {
  font-size: 1.2rem;
}

.prize img {
  height: 450px;
  width: auto;
}

.prize-text a {
  color: #1d63ed;
  text-decoration: none;
}

.prize-text a:hover {
  text-decoration: underline;
}
