* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background: linear-gradient(to left, orange, purple);
    display: grid;
    text-align: center;
    padding: 10px;
}

.details {
    justify-self: center;
    background-color: white;
    display: grid;
    grid-template-rows: repeat(1fr, 150px);
    padding: 50px;
    border: solid 1px white;
    border-radius: 2em;
}

.details img {
    justify-self: center;
    width: 50px;
    height: 100%;
}

h1 {
    color: blueviolet;
    text-shadow: 2px 2px 2px black;
}

h2 {
    color: white;
    margin: 20px;
    background: linear-gradient(to left, black, blue);
    width: 20em;
    padding: 10px;
    border-radius: 5em;
}

p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: orange;
}

.progress {
    width: 253px;
    height: 12px;
    background-color: aquamarine;
    position: relative;
    border-radius: 5px;
}

.progress .bar {
    position: absolute;
    width: 0;
    height: 100%;
    background-color: orange;
    border-radius: 5px;
    /* animation: bar 12s linear forwards; */
}

@keyframes bar{
    100%{
        width: 70%;
    }
}

h1 .num {
    position: absolute;
    /* left: 68%; */
    font-size: 14px;
}

footer {
    position: relative;
}