body{
    margin: 0;
}
*{
    font-family: "SUSE", sans-serif;
  font-optical-sizing: auto;
  font-weight:500;
  font-style: normal;
}
#qrcode{
  display: none;
    width:  100%;

}
.container{
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;


}  
@keyframes move {
    0%{
        top:41%;
    }
    50%{
        top:96%;
    }
    100%{
        top:41%;
    }
}
.box{
    h1{
        margin: 0;
        font-weight: bold;
        font-size: xx-large;
        color:snow;
        padding: 0;
        text-shadow: 1px 1px 1px crimson;
    }
    p{
        margin: 0;
        padding: 0 0 10px 0;
        border-bottom: 1px solid rgba(245, 245, 245, 0.564);
    }
    img{
        width: 100%;
        height: 100%;
        border-radius: 5px; 
     }
    span{
        position: absolute;
        background-color: steelblue;
        height: 1px;
        width: 90%;
        animation: move 1.5s ease-in-out infinite;
            }
            
    div{
        display: flex;
       gap: 10px;
       width: 100%;
       display: flex;
       justify-content: space-evenly;
       align-items: center;
    }
    input{
        height: 40px;
        width: 100%;
        border-radius: 5px;
        border: 1px solid transparent;
        text-align: center;
        outline: none;
    }
    button{
        width: 100%;
        border-radius: 5px;
        padding: 0px 10px 0 10px;
        height:40px;
        font-weight: bold;
        border: 1px solid transparent;
        background-color: aliceblue;

    }
    #btn:hover,#btn:focus{
        background-color: rgba(0, 128, 0, 0.518);
        color: white;
    }
    #clear:hover,#clear:focus{
        background-color: tomato;
        color: white;
    }
    #print:hover,#print:focus{
        background-color: rgb(170, 170, 247);
        color: white;
    }
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:steelblue;
    gap: 15px;
    padding:20px 30px 20px 30px;
    border-radius: 10px;
}
#print,#clear{
    display: none;
}
