*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
font-weight: 400;
}

body{
    background: #002339;
    color: #fff;
}

.container{
    margin: 12%;
    width:90%;
    max-width: 700px;
}

.display{
    background: #fff;
    width: 100%;
    border-radius: 10px;
    display:flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    padding: 26px 20px;
    margin-top: 10px;
}
.display input{
    width: 100%;
    border: none;
    outline: none;
    font-size: 17px;
}
.display img{
    width: 30px;
    cursor: pointer;
}
.container h1{
    font-size: 40px;
    margin-bottom: 20px;
}

.container h1 span{
    color: #019f55;
    border-bottom: 4px solid #019f55;
    padding-bottom:7px;
}

button{
    background: #019f55;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin-top: 10px;
    padding: 2px 30px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 10;
}
button img{
    width: 35px;
}
