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



*{
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100vh;
    /* background-color:#edc06d; */
    background-color: #d6d3a9;
    color: #792360;
    font-family: "Michroma", sans-serif;
}
.main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 1px solid white; */
    width: 100%;
    height: 100%;
    z-index: 1;
}
.inner{
    border-radius: 13px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 1px solid #000; */
    gap: 20px;
    padding: 12px;
    background-color: #c5c186;
    min-width: 30%;
    min-height: 25%;
    z-index: 10;
    box-shadow: 9px 14px 94px 38px #765309;
}
.bar{
    height: 10px;
    background-color: #e29cce;
    width: 90%;
    border-radius: 13px;
    border: 1px solid #423419;
}
.progress{
    height: 100%;
    width: 13%;
    background-color: #dd633c;
    border-radius: 50px
}
p{
    font-family: "Archivo Black";
    letter-spacing: 2px;
}