*{
    margin: 0;
    padding: 0;
    /* user-select: none; */
}

/* this is where my body styling starts */

body{
    /* background-image: url(""); */
    background-color: blue;
    text-align: center;
    text-transform: capitalize;

}

.container{
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    min-height: 200px;
}

button{
    width: 120px;
    
}