body {
	font-family: "Comic Neue", cursive;
	font-weight: 400;
	width: 90%;
	max-width: 600px;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
	background-color: #f4f4f4;
}

.container {
	background: white;
	padding: 20px 10px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.logo img {
	width: 70px;
	height: auto;
}

h1, h2, h3, h4 {
    font-family: "Comic Neue", cursive;
    font-weight: 700;
    font-style: italic;
}

.logo h1 {
	font-size: 30px;
	margin: 0;
}

form {
	margin-top: 20px;
}

input[type="text"] {
	width: 90%;
	padding: 10px;
	margin: 10px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.button {
	width: 60%;
	padding: 10px;
	border: none;
	border-radius: 4px;
	background-color: #000;
	color: white;
	font-size: 16px;
	cursor: pointer;
	margin-top: 10px;
}

.button:hover {
	background-color: #333;
}


button {
  padding: 17px 40px;
  border-radius: 10px;
  border: 0;
  background-color: rgb(255, 56, 86);
  letter-spacing: 1.5px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: rgb(201, 46, 70) 0px 10px 0px 0px;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
}

button:hover {
  box-shadow: rgb(201, 46, 70) 0px 7px 0px 0px;
}

button:active {
  background-color: rgb(255, 56, 86);
  /*50, 168, 80*/
  box-shadow: rgb(201, 46, 70) 0px 0px 0px 0px;
  transform: translateY(5px);
  transition: 200ms;
}


#error {
    margin: 10px;
}

#resultbox {
    margin: 10px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
  overflow-x:auto;
}
tr:hover{background-color: #f2f2f2;}
tr:nth-child(even) {background-color: #f2f2f2;}
.text-right {
    text-align: right;
}

.error {
  position: relative;
  animation: shake 0.1s linear;
  animation-iteration-count: 3;
}

@keyframes shake {
  0% {
    left: -5px;
  }
  100% {
    right: -5px;
  }
}