* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0px;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
#logo {
  width: 150px;
  height: auto;
  margin-top: 25px;
  margin-right: 50px;
  align-self: flex-end;
}
input {
  width: 300px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  resize: vertical;
}
input[type="submit"] {
  background-color: transparent;
  border-radius: 10px;
  border: white 2px solid;
  margin-top: 20px;
  color: white;
  width: 100px;
  height: 50px;
  font-size: 20px;
}
input[type="submit"].hover {
  background-color: white;
  color: #a00011;
  border: #a00011 2px solid;
}
.container {
  background-color: coral;
  padding: 20px;
  box-sizing: border-box;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 400px;
  border-radius: 20px;
  box-shadow: 5px 5px 10px 10px rgb(182, 150, 150);
}
.instruction {
  font-size: 15px;
  margin-top: 10px;
}
.content {
  font-size: 20px;
  margin-top: 50px;
  margin-bottom: 10px;
}
button {
  background-color: transparent;
  border-radius: 10px;
  border: white 2px solid;
  margin-top: 20px;
  color: white;
  width: 100px;
  height: 50px;
  font-size: 20px;
}
button:hover {
  background-color: white;
  color: #a00011;
  border: #a00011 2px solid;
}
