/* General reset */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background */
body {
  font-family: Arial, sans-serif;
  background: white url('checkerboard.webp') repeat; /* You can create/checkerboard pattern */
  color: #222;
  line-height: 1.6;
}

/* Main container */
.container {
  max-width: 800px;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.9);
  border: 5px solid #000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 5px 5px 0px rgba(0,0,0,0.4);
  text-align: center;
}

/* Logo badge */
.logo-badge {
  background: white;
  border: 4px solid black;
  display: inline-block;
  padding: 15px 25px;
  border-radius: 50%;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.3);
  margin-bottom: 15px;
}

.logo-badge img {
  max-width: 80%;
}

.logo-badge h1 {
  font-size: 2em;
  color: #f98c2f;
}

.logo-badge span {
  font-weight: bold;
  color: black;
}

/* Headings */
h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  padding: 10px;
  text-transform: uppercase;
  text-align: center;
}

h2 {
  font-size: 1.8em;
  text-transform: uppercase;
  color: white;
  background: #f98c2f;
  padding: 10px;
  transform: rotate(-3deg);
  display: inline-block; /* Only as wide as the text */
  margin-top: 10px;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

section {
  margin-bottom: 30px; /* space between each section */
}

/* Lists */
ul {
  list-style: none;
  margin-left: 15px;
}

ul li {
  margin-bottom: 8px;
}

/* Form */
form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea, button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

input, textarea {
  width: 100%;
}

button {
  background: orange;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: darkorange;
}

footer img {
  max-width: 80%;
  margin-top: 10px;
}

/* Website link */
.website a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
  background: white;
  padding: 5px 10px;
  border: 2px solid black;
  border-radius: 5px;
}

.website a:hover {
  background: black;
  color: white;
}
