@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html,body{
    height: 100%;
    width: 100%;
    font-family: 'roboto', sans-serif;
    background-color: bisque;
}
h1{
    color: rgb(9, 5, 0);
    font-style: bold;
    font-size: 40px;
}
.button{
    background-color: black;
    font-size: x-large;
    color: aliceblue;
    width :66px;
    padding: 20px;
    margin: 0 3px;
    border: 2px solid black;
    border-radius: 10%;
    cursor: pointer;
}
.row{
    margin: 8px 0;
}
.row input{
    background-color: rgb(217, 177, 116);
    width: 270px;
    font-size: 20px;
    margin: 0;
    padding: 10px 14px;
    border: 2px solid black;
    border-radius: 5px;
}