* {
    margin: 0;
    padding: 0;
    font-family: "Quicksand-Medium";
}

@font-face {
    font-family: "Quicksand-Medium";
    src: url("Quicksand-Medium.ttf");
}
@font-face {
    font-family: "Quicksand-Bold";
    src: url("Quicksand-Bold.ttf");
}

body {
    display: flex;
    height: 100dvh;
    width: 100dvw;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: "Quicksand-Medium", "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 2;
    background-image: url("pens.png") center center no-repeat fixed #fff;
    background-color: rgb(255, 255, 255);
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-image: url("pens.png");
    background-origin: padding-box;
    background-clip: border-box;
}
#InputSpace {
    display: flex;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0rem;
}
.inputArea {
    height: 38px;
    background: #fff;
    border-radius: 3px;
    position: relative;
    width: 100%;
}


p {
    display: inline-block;
    text-align: center;
}
span{
    padding-top: 2px;
    padding-bottom: 2px;
}
#Results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1 {
    margin-bottom: 2rem;
    font-family: "Quicksand-Bold";
    color: #fff;
}

button[type="submit"] {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    right: 0px;
    color: #e43662;
    background: #2a2929;
    border: none;
    top: 0;
    opacity: 1;
}
button[type="submit"] {
    position: absolute;
    right: 0px;
    width: 75px;
    padding: 10px;
    height: 38px;
}
button,
input {
    font-weight: bold;
    font-size: 15px;
}
#Input {
    height: 38px;
    max-width: 350px;
    padding: 0 12px;
    position: relative;
}

input[type="text"] {
    border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    line-height: 36px;
    padding: 0px 45px 0 10px;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    position: absolute;
}
input {
    color: #4a5d5c;
}
button,
input {
    font-weight: bold;
    font-size: 15px;
}
#Button, body, form {

    border: none;
  }

  .highlight{
    font-weight: bold;
    font-family: "Quicksand-Bold";
    text-decoration: underline;
  }
 #Reset{
    margin-top: 2rem;
    padding: 10px;
    color: #e43662;
    background: #2a2929;
    outline: 0px;
    border: 0px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
  .hidden {
    display: none !important ;
}