body{
    color: #181E19;
    background-color: #F1F6F1;
    font-family: 'Poppins', sans-serif;
}

header{
    font-family: 'Poppins', sans-serif;
    padding: 0 10%;
    width: 100%;
    height: 60vh;
    background:  linear-gradient(to bottom, rgba(19, 26, 69, 0.7), rgba(0,0,0,0.9)), url("../images/transfer.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

header h1{
    color: #fff;
    font-size: 4rem;
    text-transform: capitalize;
    margin: 3rem 0 0 0;
}

header .underline{
    content: "";
    width: 50px;
    height: 2px;
    background-color: #1ECD56;
    display: inline-block;
}

/*Accounts*/
.accounts{
    padding: 3rem 10%;
    background-color: #F1F6F2;
}

.accounts > p{
    font-size: 25px;
    text-align: center;
    margin: 1.5rem 0;
}

.accounts .container, .accounts .container .box{
    display: flex;
}

.accounts h3{
    text-transform: capitalize;
}

.accounts .box p{
    color: #8E978F;
}

.accounts .container{
    justify-content: space-between;
    width: 100%;
}

.accounts .container .box{
    flex-direction: column;
    align-items: center;
    width: calc(100vw/4);
    padding: 1rem;
    text-align: center;
    line-height: 1.7rem;
}

.accounts .container .box:hover{
    background-color: #fff;
}

.accounts .container .box i{
    font-size: 40px;
    color: #1ECD56;
    padding-bottom: 10px;
}


@media screen and (max-width: 1000px){
    header{
        padding: 0 5%;
    } 

    .accounts .container{
        padding: 3rem 0;
        flex-direction: column;
        align-items: center;
    }

    .accounts .container, .accounts .box{
        width: 100% !important;
    }
}

@media screen and (max-width: 750px){
    header h1{
        font-size: 2.5rem;
    } 

}

@media screen and (max-width: 400px){
    header h1{
        font-size: 2rem;
    }

    header .underline{
        content: "";
        width: 30px;
        height: 2px;
        background-color: #1ECD56;
        display: inline-block;
    }

}