/* Soft color palette */
:root {
  --primary-color: #b376bf; /* lavender */
  --secondary-color: #313dae; /* blue */
}

/* Center the page content and set font family */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--primary-color);
  color: white;
  font-family: Montserrat, sans-serif; /* adjust this to your liking! */
}

/* Single column layout styles */
.container {
  max-width: 800px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: var(--secondary-color);
}

#hello-world {
  font-size: 48px; /* adjust this to your liking! */
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #FFC107; /* orange */
  color: white;
  cursor: pointer;
}

img{
  width: 400px;
  }