@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    
    
}

.conrainer{
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px #000;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
}
.conrainer h1{
    margin: 20px;
    color: rgb(175, 46, 68);
}
.conrainer input{
    width: 72%;
    height: 50px;
    border-radius: 20px;
    outline: none;
    border: none;
    border: 2px solid black;
    background: rgb(255, 255, 255, 0.18);
    padding: 0 20px;
    font-size: 18px;
    box-shadow: 0 0 5px #000;
}

.generate-btn{
    margin: 10px 0;
    margin-top: 25px;
    height: 50px;
    width: 43%;
    border-radius: 10px;
    border: none;
    background: rgb(0, 0, 0, 0.70);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.1s all ease;
}
.generate-btn:hover{
    box-shadow: 0 0 10px black;
    background-color: black;
}
#qrcode{
    width: 90%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.del-btn{
    margin-top: 10px ;
    padding: 5px;
    width: 43%;
    border-radius: 0;
    border: 2px solid #000;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    transition: 0.1s all ease;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
}
.del-btn:hover{
    box-shadow: 0 0 10px black;
    background-color: rgb(116, 10, 10);
    color: #fff;
}
.Link-Para{
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    word-wrap: break-word;
    text-align: center;
    text-decoration: underline;
    text-decoration: color(blue red green blue);
}
