body{
    background-image: url(./current.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}
#top{
    position: relative;
    top: 193px;
    left: 877px;
    border: 6px solid white;
    border-radius: 7px;
    height: 15px;
    width: 60px;
    box-shadow: 0 5px 10px gray, 5px 0 10px gray, -5px 0 10px gray;
}
#battery{
    position: relative;
    top: 200px;
    left: 780px;
    border: 6px solid white;
    border-radius: 9px;
    height: 450px;
    width: 250px;
    box-shadow: 0 5px 10px gray, 5px 0 10px gray, -5px 0 10px gray;
}
#color1{
    position: absolute;
    bottom: 7.5px;
    left: 9px;
    border: none;
    border-radius: 9px;
    height: 435px;
    width: 232px;
    animation-name: first;
    animation-duration: 18s;
    animation-delay: 1s;
}
h2{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 30px;
    margin-top: 220px;
    margin-right: 55px;
    animation-name: full;
    animation-duration: 3s;
    animation-delay: 15s;
}
@keyframes first {
    0%{
       background-color: rgb(139, 0, 0);
       height: 0; 
    }
    25%{
        background-color: orange;

    }
    50%{
        background-color: yellow;

    }
    75%{
        background-color: yellowgreen;

    }
    100%{
        background-color: darkgreen;
        height: 435px;
    }
}
@keyframes full {
    from{
        color: transparent;
        text-shadow: none;
    }
    to{
        text-shadow: 0 3px 9px rgb(255, 250, 250), 3px 0 9px rgb(255, 255, 255);
        color:black;
    }
}