body {
    margin: 0;
    background-color: #1c1c1c;
    font-family: 'Inter';
    color: lightgray;
}

.heading {
    background-color: #443355;
    padding: 32px 0px;
    box-sizing: border-box;
    text-align: center;
}

.progress {
    background-color: rgb(41, 41, 41);
    border-radius: 100px 100px;
    margin-bottom: 25px;
}

.seekbar {
    padding: 15px;
    font-weight: bold;
    overflow: hidden;
    background-color: #443355;
    text-align: center;
    border-radius: 100px;
    box-sizing: border-box;
    -webkit-animation: seekbar 3s ease-in-out;
    -webkit-animation-fill-mode: both;
    -moz-animation: seekbar 3s ease-in-out;
    -moz-animation-fill-mode: both;
}

@-webkit-keyframes seekbar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@-moz-keyframes seekbar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.blog_card {
    background-color: #443355;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}

.blog_card h1 {
    font-size: 18px;
    margin-bottom: 0;
}

.blog_card p {
    margin-top: 10;
}

.heading h1 {
    color: lightgray;
    margin-bottom: 0;
}

.footer {
    background-color: #443355;
    padding: 25px 0px;
    box-sizing: border-box;
    text-align: center;
    color: lightgray;
    width: 100%;
    margin-top: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 15px 15px 0px 0px;
}

.heart {
    width: 25px;
    display: inline-block;
}

.nav {
    background-color: #3a2b48;
    padding: 15px 0px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 0px 0px 15px 15px;
    display: grid;
    grid-template-columns: auto auto auto;
}

.nav a {
    text-decoration: none;
    color: lightgray;
    text-align: center;
}

.pfp {
    border: 2px white solid;
    border-radius: 100%;
    width: 120px;
}

.cell_icon_img {
    width: 70px;
    height: 70px;
    border-radius: 15px;
}

.cell {
    position: relative;
    background-color: rgb(41, 41, 41);
    border-radius: 20px;
    padding: 8px;
    box-sizing: border-box;
    display: inline-block;
}

.cell_icon {
    float: left;
    margin-right: 10px;
    border-radius: 15;
}

.cell_name {
    display: block;
    margin-top: 13px;
    color: lightgray;
}

.cell_dl {
    right: 10;
    bottom: 33px;
    position: absolute;
}

.cell_sub {
    margin-top: 5px;
    color: gray;
}

.content {
    margin: 0 auto;
    padding: 1rem;
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
    max-width: 1072px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 100px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 15px;
    align-items: stretch;
    position: relative
}

.blog_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 15px;
    align-items: stretch;
    position: relative
}

.lost {
    color: rgb(255, 113, 113);
}

.h {
    color: lightgray;
}