@font-face {
  font-family: 'SuperComic';
  src: url('SuperComic-qZg62.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
    font-family: 'SuperComic', sans-serif;
    background-color: #383737;
}

.container {
    margin: 0 auto;
    text-align: center;
}

.head {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3rem 3rem;
}

.logo {
    width: 6rem;
    height: 6rem;
    margin: 0 1rem;
}

h1 {
    font-size: 2.5rem;
    color: white;
    stroke: black;
    stroke-width: 1px;
    -webkit-text-stroke-color: rgb(0,0,0);
    -webkit-text-stroke-width: 1px;
    display: inline;
    margin: 0 1rem;
}

h2 {
    color: white;
}

/* Preview box styling */
.preview-box {
  width: 25rem;   
  height: 25rem;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border: 3px solid #000;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

/* Placeholder text inside preview box */
#preview-placeholder {
  color: #555;
  font-size: 1.1rem;
  text-align: center;
  pointer-events: none;
  user-select: none;
  font-family: 'SuperComic', sans-serif;
}

.preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card {
  width: 31.25rem;
  padding: 1rem;
  margin: 0 auto;
  text-align: left;
}

.button-row {
  display: flex;
  justify-content: flex-start; /* pushes button(s) to the right */
  align-items: center;
  gap: 0.5rem; /* space between button and spinner */
  margin-top: 1rem;
}

#seetify-btn {
  width: auto;
}

#photo {
  display: block;
  margin-bottom: 1rem;
  font-family: 'SuperComic', sans-serif;
  font-size: 10px;
  color: gray;
}

input[type="file"]::file-selector-button {
  background-color: #fff;
  color: black;
  border: 3px solid black;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  font-family: 'SuperComic', sans-serif;
  font-size: 10px;
}

.btn {
    padding: 0.5rem 1.5rem;
    background-color: rgb(153, 153, 153);
    font-size: 1rem;
    color: white;
    font-family: 'SuperComic', sans-serif;
    border: 3px solid black;
}
.btn:hover {
    cursor: pointer;
}

.result {
    text-align: center !important;
    padding: 1rem;
    margin: 0 auto;
}