/* Array font */
@font-face {
  font-family: 'Array';
  src: url('https://acezyes.neocities.org/font/Array-Regular.ttf') format('truetype');
}

/* Khand font */
@font-face {
  font-family: 'Khand';
  src: url('https://acezyes.neocities.org/font/Khand-Regular.ttf') format('truetype');
}


body {
  background-color: #D1D0CE;
  cursor: url('https://acezyes.neocities.org/cursor.png'), auto;

  color: black;
  font-family: 'Khand';
}

h1 {
  font-family: 'Array', sans-serif;
  font-size: 6vw;
}

p {
  font-family: 'Khand', sans-serif;
  font-size: 2vw;
}

.main {
  width: 600px;                 /* Set box width */
  margin: 50px auto;            /* Center the box horizontally */
  padding: 40px;                /* Space inside the box */

  border-radius: 10px;          /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Soft shadow */

  display: flex;                /* Use flexbox to center content */
  flex-direction: column;       /* Stack content vertically */
  align-items: center;          /* Center horizontally inside box */
  justify-content: center;      /* Center vertically inside box */
  text-align: center;           /* Center inline text */
}


