*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    background: linear-gradient(
        to right,
        #7f53ac,
        #bbb049
    );
}
.container{
    position: absolute;
    width: 50%;
    max-width: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0) translateY(-50%);
    background: #ffffff7d;
    padding: 30px 20px;
    border-radius: 5px;
    display: grid;
    justify-items: center;
    font-family: 'Poppins', sans-serif;
}

h3{
    font-size: 16px;
    font-weight: 600;
}
input[type="text"]{
    width: 90px;
    font-weight: 600;
    color: #663399;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
    border-radius: 5px;
    border: 2px solid #202020;
    font-size: 28px;
}
button{
    width: 160px;
    padding: 15px 0;
    border-radius: 5px;
    background-color: #c13c3c;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    outline: none;
}
p{
    font-weight: 400;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: #202020;
  color: #ffffff;
  font-size: 14px;
}

footer p {
  margin: 0;
}
