*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: consolas;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f8f8;
}

.inputBox{
    position: relative;
    width: 450px;
}

.inputBox h2{
    font-size: 28px;
    color: #333;
}


.inputBox input{
    position: relative;
    width: 100%;
    height: 60px;
    border: 2px solid black;
    outline: none;
    margin: 15px 0 20px;
    background: transparent;
    padding: 0px 40px;
    font-size: 24px;
    letter-spacing: 1px;
    border-radius: 8px;
    color: #333;
}

.inputBox input::placeholder{
    user-select: none;
    letter-spacing: 0px;
}

.inputBox #btn{
    position: relative;
    cursor: pointer;
    background: #333;
    color: #fff;
    border-radius: 8px;
    outline: 0;
    font-size: 24px;
    padding: 10px 15px;
    border: none;
    transition: all .2s ease-in;
    width: 100%;
}

.inputBox #btn:hover{
    background: #32cd32;
}
.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   padding: 20px 30px;
   background-color: white;
   color: grey;
   text-align: center;
}
