@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");

:root {
  --success-color: #2ecc71;
  --error-color: #e74c3c;
  --input-border: 2px solid #f0f0f0;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #A3CFFA;
  font-family: "Open Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  width: 600px;
}

h2 {
  text-align: center;
  margin: 0 0 20px;
}

.form {
  padding: 30px 40px;
}
/* hit label here */
.form-control {
  margin-bottom: 10px;
  padding-bottom: 20px;
  position: relative;
}

.form-control,
.form-control input {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
    font-size:2em;
}

.form-control label {
  color: #777;
  display: flex;
  margin-bottom: 5px;
}
/* Hit input text here */
.form-control input {
  border: var(--input-border);
  border-radius: 4px;
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 14px;
}

.form-control input:focus {
  outline: 0;
  border-color: #777;
}

.form button {
  cursor: pointer;
  background-color: #3498db;
  border: 2px solid #3498db;
  border-radius: 8px;
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 10px;
  margin-top: 20px;
  width: 100%;
}

.result {
  /*width: 300px;*/
  padding: 0.5rem;
  background-color:#BFBFBF;
  border: var(--input-border);
  width: 100%;
  border-radius: 5px;
  display: flex;
  color:#FFFFFF;
    font-size:1.5em;
    font-weight: bolder;
}

.result #result p {
  display: block;
  border: 2px solid #000;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: bolder;
}
