*::before,
*::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    height: 100px;
    background: linear-gradient(
        to right,
        rgb(254, 1, 250),
        rgb(127, 37, 245)
    );
}

.container{
    position:absolute;
    width: 50%;
    min-width: 580px;
    transform: translate(-50%,-50%);
    top:50%;
    left: 50%;
    font-family: Comic nune,cursive;
    background-color: white;
    padding: 50px 10px;
    border-radius: 6px;
    display: grid;
    justify-items: center;

}

h2{
    font-size: 16px;
    font-weight: 600;
}
input[type="text"]{
    width:fit-content;
    font-weight: 600;
    color: rgb(254, 1, 250);
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
    border-radius:6px ;
    border: 2px solid black;
    font-size:20px ;

}
button{
    width: 160px;
    padding: 15px 0;
    border-radius: 6px;
    background: linear-gradient(
        to right,
        rgb(254, 1, 250),
        rgb(127, 37, 245)
    );
    color: white;
    font-size: 18px;
    font-weight: 600;

}