*{
    box-sizing: border-box;
    
}
body{
    margin: 0;
}

input[type="text"]{
    width: 100%;
}

.grid{
    display: grid;
    grid-template-columns: 1fr, 3fr;
    grid-template-rows: 1fr 3fr;
    justify-content: center;
    gap: 10px;
}

label {
    display: grid;
    
    
}


#msg{
    font-size: 90px;
    color: forestgreen;
}