@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

*{
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: scroll;
}

.box{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 260px;
    margin: 10px 10px;
    background-color: aliceblue;
    border-radius: 15px;
    padding: 9px 17px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.box #batte{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
}

.box #bat{
    position: absolute;
    top: 9px;
    right: 17px;
}

.box #menage{
    position: absolute;
    top: 10px;
    left: 10px;
}

.green{
    background-color: rgba(22, 139, 14, 0.35);
}

.red{
    background-color: rgba(207, 29, 29, 0.35);
}

.container a, .container button{
    text-decoration: none;
    background-color: aquamarine;
    border-radius: 15px;
    font-weight: bold;
    padding: 6px 18px;
    color: black;
    cursor: pointer;
    border: none;
    transition: all .35s;
}

.container a:hover, .container button:hover{
    scale: 1.1;
}

.box-div{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.box-div-bat{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

#trait{
    text-align: center;
    width: 100%;
    border-bottom: 2px solid black;
    font-weight: bold;
    font-size: 20px;
}

.low{
    color: red;
    font-weight: bold;
    animation: lowwbat 1.2s linear infinite;
}

@keyframes lowwbat{
    0%{
        scale: 1;
    }
    50%{
        scale: 1.1;
    }
    100%{
        scale: 1;
    }
}