*{
    margin: 0;
    padding: 0;
    font-family: 'poppins',sans-serif;
    box-sizing: border-box;
}
body
{
    background:#1d1049;
   color: white;
}
.container
{
    max-width: 700px;
    margin: 12%;
    width: 90%;
}
.display{
    width: 100%;
    color: #333;
    background: white;
    margin-bottom: 30px;
    margin-top: 50px;
    padding: 25px 20px;
    border-radius: 5px;
    display: flex;
    text-align: center;
    justify-content: space-between;


}
.container h1{
    font-weight: 500;
    font-size: 45px;
}
.container h1 span
{
    color: green;
    border-bottom: 4px solid green;
    padding-bottom: 10px;
}
.display img{
    width: 30px;
    cursor: pointer;
}
.display input
{
    border: 0;
    outline: 0;
    font-size: 25px;
}

.container button img{
    font-size: 25px;
    margin-right: 10px;
}
.container button {
    outline: 0;
    border: 0;
    cursor: pointer;
    border-radius: 5px;
    background: rgb(4, 97, 4);
    color: white;
    padding: 16px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 300;
    cursor: pointer;

}