@font-face {
  font-family: 'atbold';
  src: url('atbold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'atbold', sans-serif;
}

a {
  text-decoration: none;
}

.submit-btn {
  font-family: 'atbold', sans-serif;
  background-color: #bf272d;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 9px;
  font-size: 16px;
  cursor: pointer;
  margin: 20px auto;
  display: block;
  transition: background-color 0.3s ease;
}

.watermark-icon {
  position: fixed;
  bottom: -40px;
  /* distance from bottom */
  right: 0px;
  /* distance from right */
  /* size of the watermark */
  width: 200px;
  opacity: 0.4;
  /* make it faint */
  pointer-events: none;
  /* so it doesn’t block clicks */
  z-index: 10000;
  /* on top of everything */
}

.submit-btn:hover {
  background-color: #ab1319;
}

body {
  font-family: Arial, sans-serif;
  margin: 30px;
  background-color: #f4f4f4;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  color: #333;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: white;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

th {
  background-color: #eee;
}