body{
    background-color: #edafd5;
}
h1{
    font-family: cursive;
}
*{
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
}
.container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

form .display{
    margin: 20px 0;
    justify-content: flex-end;
    display: flex;
}
form .display input{
    flex: 1;
    font-size: 45px;
    text-align: right;
    box-shadow: none;

}

.calculator{
    border-radius: 10px;
    padding: 20px;
    background-color: #ff1d76;

}

.calculator form input{
    outline: 0;
    font-size: 25px;
    margin: 10px;
    border-radius: 10px;
    height: 60px;
    border: 0;
    width: 60px;
    background: black;
    color: white;
    cursor: pointer;
}
form input.equal{
    width: 150px;
}
form input.ac{
    width: 150px;
}
.top{
    text-decoration: none;
    color: black;
}

