body{
    background-color: #004687;
}
.container{
    background-color: #333333;
    margin: 0 auto;
    height: 100%;
    border-radius: 20px;
    padding:10px 10px;
    box-sizing: border-box;
    width:350px;
    max-width: 100%;
}
#logo{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-top: 10px;
    margin-left:10px;
    
}
h1{
    font-size: 20px;
    color:#f5f5f5;
    margin-right: 10px;
    display: inline-block;
    width:40%;
}
.arrange{
    display:flex;
    justify-content: flex-end;
    width:30%;
    justify-content: space-between;
    margin-top: 10px;
    margin-right: 10px;
}
.arrange1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}
.arrange2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
}
.add-money{
    background-color: #333333;
    border-radius: 10px;
    color: #1dcf9f;
    padding: 5px 5px;
    margin-bottom: 10px;
    height:15px;
    width:80px
}
.okay{
    text-decoration: none;
    color: #1dcf9f;
}
.container1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.container2{
    background-color: #1dcf9f;
    border-radius: 10px;
    margin:10px 5px;
    height:70px;
    width:300px;
    color:black;
    padding:10px 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    max-height:150px;
}
.container2:hover{
    background-color: #3dcf7f;
}
.opay:hover,.opay2:hover{
    background-color: #3dcf7f;
    border-radius: 50%;
}
.container3:hover,.container4:hover,.container5:hover{
    background-color: #555;
}
.container3{
    background-color: #666;
    border-radius: 10px;
    margin:10px 5px;
    height:50px;
    width: 270px;
    color:black;
    padding:20px 25px;
    max-height:150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container4{
    background-color: #666;
    border-radius: 10px;
    margin:10px 5px;
    height:150px;
    width:300px;
    color:black;
    padding:10px 10px;
    max-height:150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap:30px;
    flex-direction: row;
}
.container5{
    background-color: #666;
    border-radius: 10px;
    margin:10px 5px;
    height:120px;
    width:300px; 
    color: black;
    padding:5px 10px;
}
.container5 p{
    font-size: 10px;
    margin-bottom: 5px;
}
@media (max-width:768px) {
    .container{
        width: 100%;
        padding:5px 10px 10px 10px;
    }
}
.inner-container{
    background-color: rgba(0,128,0,0.5);
    border-radius: 10px;
    margin:10px 5px;
    height:15px;
    width:300px;
    color: black;
    text-align: left;
}
.work{
    display: inline-block;
    margin-left: 3px;
}
.eye{
    margin-right: 30px;
    font-size: 15px;
    font-weight:bold;
    padding: 0 10px;
}
.opay{
    background-color:#1dcf9f;
    border-radius: 50%;
    padding: 5px 5px;
    margin:5px 5px 10px 8px;
}
.opay2{
    padding: 5px 5px;
    margin:5px 5px 10px 8px;
}
.opay-border{
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 10px;
}
.opay-border2{
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 50%;
}
figcaption{
    width:100%;
    color: #f5f5f5;
    display: inline-block;
    font-size:10px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-weight: bold;
}
@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.animation{
    animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn2{
    from{
        opacity: 0;
        transform: translateX(20px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
.animation2{
    animation: fadeIn2 2s ease-in-out;
}
h2,p{
    font-size:11px;
    color:#f5f5f5;
}
.tick{
    display:inline-block;
    margin-right: 5px;
}