/* --- LAYOUT STYLES --- */

body {
    font-family: sans-serif;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    background-color: #f4f4f9;
}

h1 {
    color: #333;
}

.box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

form {
    margin-bottom: 20px;
}

input[type="number"] {
    padding: 10px;
    width: 60px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

button:hover {
    background-color: #0056b3;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
}

li {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px;
    font-size: 2em; /* Larger size to show off the fonts */
    line-height: 1.4em;
}

li:first-child {
    border-top: 1px solid #eee;
}

/* --- FONT THEMES --- */

.flavors-regular {
  font-family: "Flavors", cursive;
  font-weight: 400;
  font-style: normal;
  color: #c2185b; /* Dark Pink */
}

.rubik-distressed-regular {
  font-family: "Rubik Distressed", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #333333; /* Dark Charcoal */
}

.rubik-vinyl-regular {
  font-family: "Rubik Vinyl", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #ff4500; /* Orange Red */
}

.creepster-regular {
  font-family: "Creepster", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #8a0303; /* Blood Red */
  letter-spacing: 1px;
}

.syne-mono-regular {
  font-family: "Syne Mono", monospace;
  font-weight: 400;
  font-style: normal;
  color: #0000cd; /* Medium Blue */
}

.autour-one-regular {
  font-family: "Autour One", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #2e8b57; /* Sea Green */
}
