@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Quicksand', sans-serif; 
}

.container{
    height: 100vh;    
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;

}

.content{
    max-width: 600px;
    width: 90%;
    background: #000;
    margin-left: 10%;
    padding: 20px;
}

.content h1{
    color: #57cc99;
    font-size: 40px;
    font-weight: 400;
}

.content p{
    font-size: 20px;
    font-weight: 400;
    color: #fff;

}

.display{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    margin-top: 20px;
    padding: 26px 20px;
    border-radius: 5px;
    background: #fff ;
}

.display input{    
    border: 0;
    outline: 0;  
    font-size: 24px;
    width: 90%;
}

.content button{
    width: 200px;
    height: 50px;
    font-size: 16px;
    margin-top: 5px;
    background: #57cc99;
    border-radius: 5px;
    cursor: pointer;
}

.content button:hover{
    background: #38a3a5;
    color: #fff;   
}

.display img{
  width: 30px;
  cursor: pointer;
}

