.buttons1{
    display: none;
    margin: 5px 5px;
}
*{
    background-color: antiquewhite;
}
#footer{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    text-shadow: 0 0 10px black;
}
#header{
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 30px;
    text-shadow: 0 0 10px black;
}
.container{
    box-sizing: content-box;
    border: 3px solid black;
    width: max-content;
    margin: 4px 4px;
    padding: 4px 4px;
    background-color: black;
    border-radius: 10px;
}
.buttons{
    margin: 5px 5px;
}
button{
    margin: 3px;
    height: 50px;
    width:50px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 3px 3px 5px rgb(44, 43, 43) ;
    text-shadow: 3px 3px 5px black;
}
button:hover{
    background-color: brown;
    color: white;
}
input[type="text"]{
    width: 95%;
    height: 50px;
    margin-bottom: 5px;
    border-radius: 5px;
    text-align: right;
    font-size: 20px;
    text-shadow: 3px 3px 10px black;
}