.site-header {
    border-bottom: 0;
    border-top: 0;
}

.header-social {
    display: flex;
    gap: 12px;
}

.header-social a {
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
}

.header-social a:hover {
    color: #2a7ae2;
    text-decoration: none;
}


.avatar {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    height: 50%;
    width: 50%;
    max-width: 200px;
    border-radius: 50%;
}


@font-face{
    font-family: "Findlandica regular";
    src: url("/static/fonts/Finlandica-Regular.woff2") format("truetype");
}


.finlandica {
    font-family: "Findlandica regular", serif;
}

h1, h2 {
    font-family: "Findlandica regular", serif;

}


p {
    /*text-align: justify;*/
}

.social {
    margin-bottom: 30px;
    text-align: center;
}

.social a {
    margin-right: 10px;
    color: rgba(0, 0, 0, 0.71);
}

.social a:hover {
    color: #EB6C72;
}

.wrapper {
    background-color: white;
}

.wrapper:nth-of-type(1) {
    border-bottom: 1px solid #e8e8e8;
}


.page-content {
    padding-top: 0px;
}

.page-content .wrapper {
    padding-top: 30px;
}

/* Activity Graph */
.activity-graph {
    margin-bottom: 30px;
    overflow: hidden;
}

.activity-loading {
    text-align: center;
    color: #828282;
    padding: 20px 0;
}

.activity-calendar {
    display: flex;
    gap: 2px;
    width: 100%;
}

.activity-week {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.activity-day {
    aspect-ratio: 1;
    background: #f5f5f5;
}

.activity-day:hover {
    opacity: 0.8;
}

.activity-day.level-0 { background: #f5f5f5; }
.activity-day.level-1 { background: #c6e48b; }
.activity-day.level-2 { background: #7bc96f; }
.activity-day.level-3 { background: #449a3e; }
.activity-day.level-4 { background: #2d6a2f; }
.activity-day.level-5 { background: #0a2910; }
.activity-day.future { background: transparent; }

.activity-tooltip {
    position: fixed;
    background: white;
    border: 1px solid #e8e8e8;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    z-index: 1000;
    display: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
