/* Catppuccin Macchiato color palette reference:
   Base:      #24273A
   Mantle:    #1E2030
   Crust:     #181926
   Text:      #CAD3F5
   Subtext0:  #A5ADCB
   Blue:      #8AADF4
*/

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #CAD3F5; /* Text */
  background-color: #24273A; /* Base */
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
}

/* Headings and paragraph styling */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #A5ADCB; /* Subtext0 */
}

a {
  color: #8AADF4; /* Blue accent */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Style for the image */
.box-image {
  max-width: 250px;   /* Adjust to your preferred size */
  width: 100%;        /* Make it responsive if you prefer */
  height: auto;

}
