@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');
* {
    margin: 0px;
    padding: 0px;
}

body {
    color: #fff;
    font-family: Alexandria, sans-serif;

}

.header {
    padding: 24px;
    background-color: #1c1c1c;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;

}

.material-symbols-outlined {
    text-decoration: none;
    color: white;
    font-size: 100px;

}
.main {
    width: 100%;
    min-height: 100vh;
    background-color: #0c0c0c;
    padding: 100px 24px 24px 24px;

}

.logo-wraper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;

}
h1 {
font-size: 32px;
font-weight: 600;
margin-bottom: 20px;


}
.card {
    background-color: #252525;
    padding: 24px;
    border-radius: 12px;
}
h2 {
    font-size: 24px;
    font-weight: 600;
}
.card-img {
    object-fit: contain;
}
.card-content-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}
table {
font-size: 14px;
font-weight: 200;
padding: 12px;
}
.date {
    font-size: 16px;
    font-weight: 200;
    padding-top: 12px;
}
.cal {
    background-color: #252525;
    border-radius: 12px;
    padding: 12px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 24px;

}
.cal_img {
    display: flex;
    width: 100%;
    position: absolute;
    height: 100%;
}
.eaten {
    display: flex;
    font-size: 24px;
    font-weight: 500;
    width: 50%;
}
.donut-wrapper {
    aspect-ratio: 1 / 1;
    width: 50%;
    position: relative;
}
.donuut {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.span {
    font-size: 16px;
}
.cal-count {
    font-size: 24px;

}
.nav-bar {
    bottom: 12px;
    background-color: #353535;
    border-radius: 40px;
    padding: 12px;
    margin-top: 12px;
    position: fixed;
    display: flex;
    flex-direction: row;
    width: calc(100% - 48px - 24px);
    justify-content: space-between;
}   
.nav-bar .material-symbols-outlined {
    font-size: 36px;
}