body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin: 0;
  padding: 40px 0;
  overflow-x: hidden;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 40px;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

footer p {
  margin: 0;
}


.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  gap: 16px;
}

#inputField {
  width: 80vw;
  max-width: 900px;
  min-height: 200px;
  padding: 12px;
  font-size: 16px;
  box-sizing: border-box;
  resize: vertical;
}

.btn-like.is-disabled {
  cursor: default;
  background-color: #9d9d9d;
}

.btn-like:active {
  box-shadow: 0px 0px 0px;
  translate: 4px 4px;
}

.btn-like:hover:not(.is-disabled):not(:active) {
  box-shadow: 5px 5px 0px;
  translate: -1px -1px;
}

.btn-like {
  display: inline-block;
  margin: 4px 4px;
  padding: 10px 16px;
  text-decoration: none;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px;
  border-radius: 0px;
  cursor: pointer;
  background-color: white;
  font-family: sans-serif;
  font-size: medium;
  color:#000;
}

textarea {
  font-family: monospace;
  margin: 4px 4px;
  padding: 10px 16px;
  text-decoration: none;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px;
  border-radius: 0px;
}


.mode-select {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 80vw;
  max-width: 900px;
  margin-top: 8px;
}

.mode-select input[type="radio"] {
  accent-color: #000;
  width: 1rem;
  height: 1rem;
}