body {
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.container {
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#chuckImg {
  height: 225px;
  width: 225px;
  margin-bottom: 20px;
}

h1 {
  letter-spacing: 3px;
  text-align: center;
}

.jokeText {
  padding: 1rem 0.8rem;
  margin-top: 2rem;
  width: 90%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  background-color: black;
  text-align: center;
  font-size: 1.3rem;
}

input[type='text'] {
  padding: 8px 6px 0px;
  border: none;
  border-bottom: 2px solid #ccc;
  font-size: 1.2rem;
  margin-left: 1rem;
  outline: none;
}
input[type='text']:focus {
  border-bottom: #000 2px solid;
}

form {
  display: flex;
  flex-direction: column;
}
.forItems {
  display: flex;
}

.formItem {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.formItem label {
  font-size: 1.2rem;
}

button {
  padding: 10px 0;
  border: 0;
  background: crimson;
  color: #fff;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

img {
  height: 200px;
  margin-bottom: 20px;
}
