* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'I Hate Comic Sans';
  src: url('ihcs.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: 'I Hate Comic Sans', sans-serif;
  letter-spacing: 4px;
}
button, input {
  font-family: inherit;
  letter-spacing: 2px;
}
button {
  padding: 0.6rem;
  font-weight: 700;
  font-size: 20px;
  background-color: aquamarine;
  border-radius: 15px;
  border: 1px solid black;
  height: 50px;
}
button:hover {
  background-color: mediumspringgreen;
}
.file-input-control {
  display: flex;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  background-color: mintcream;
  margin-left: 5px;
  height: 50px;
}
.file-input-control input[type="file"] {
  display: none;
}
.file-input-control-filename {
  font-size: 12px;
  margin: 10px 0 0 30px;
  letter-spacing: 1.5px;
}
h1 {
  padding: 0.4em 0;
  display: flex;
  align-items: center;
}
.h1-text {
  font-size: 28px;
}
.icon-folder {
  font-size: 40px
}
.container {
  width: 50%;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.container-buttons {
  display: flex;
  justify-content: space-between;
  margin: 40px 20px 0 20px;
}

/* Footer styles */
footer {
  margin-top: auto;
  background-color: #eee;
  padding: 10px 20px;
  text-align: center;
}
.footer-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  line-height: 1;
}
.column {
  width: 30%;
  margin: 0 20px;
}
.font-size-18 {
  font-size: 18px;
}
.font-size-10 {
  font-size: 10px;
}
.margin-top-10 {
  margin-top: 10px;
}

/* Styles for error results */
.results-container {
  position: relative;
}
.result {
  margin: 20px 0 0 30px;
}
.success {
  color: green;
  font-weight: bold;
}
summary {
  cursor: pointer;
  font-size: 18px;
}
.error {
  color: red;
  font-weight: bold;
}
.warning {
  color: #d59500;
  font-weight: bold;
}
.warning-header {
  color: #d59500;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

/* Hand-drawn styles for divs and buttons */
.hand-drawn-big {
  background:transparent;
  border-top-left-radius: 300px 9px;
  border-top-right-radius: 9px 300px;
  border-bottom-right-radius: 300px 9px;
  border-bottom-left-radius: 9px 300px;
  border:solid 3px #777;
}
.hand-drawn-big2 {
  background:transparent;
  border-top-left-radius: 400px 12px;
  border-top-right-radius: 12px 400px;
  border-bottom-right-radius: 400px 12px;
  border-bottom-left-radius: 12px 400px;
}
.hand-drawn-sm {
  border-top-left-radius: 200px 15px;
  border-top-right-radius: 15px 200px;
  border-bottom-right-radius: 200px 15px;
  border-bottom-left-radius: 15px 200px;
  border:solid 2px #333;
}

.hand-drawn-xs {
  border-top-left-radius: 200px 10px;
  border-top-right-radius: 10px 200px;
  border-bottom-right-radius: 200px 10px;
  border-bottom-left-radius: 10px 200px;
  border:solid 2px #444;
}

/* Modal CSS */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.spinner-border {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-top: 8px solid #3498db;
  border-top-left-radius: 48%;
  border-top-right-radius: 52%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 48%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Watermark (version number) */
.watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
