:root {
    --header-bg-top-color: #1364aa;
    --header-bg-bottom-color: #fff;
    --profile-circle-size: 156px;
}

*[hidden],
[hidden] {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Mukta', sans-serif;
    font-size: 16px;
}

.page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandala-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 4rem;
}

.page-content {
    margin: 1rem;
    max-width: 800px;
}

h1 {
    font-weight: 600;
    font-size: 1.5rem;
}

h2 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 3rem;
}

h3 {
    font-weight: 600;
    font-size: 1rem;
}

p {
    line-height: 1.5rem;
}

.header {
    position: relative;
    height: calc(var(--profile-circle-size) * 2);
}

.header-background {
    position: absolute;
    width: 100%;
    height: 100%;
}

.header-background-top {
    position: relative;
    height: 50%;
    background-color: var(--header-bg-top-color);
}

.header-background-top-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top 25% center;
    background-repeat: no-repeat;
}

.header-background-top-image[data-image="mera-peak-medium"] {
    background-image: url("./images/mera-peak-pano-medium.jpg");
}

.header-background-top-image[data-image="mera-peak-high"] {
    background-image: url("./images/mera-peak-pano-high.jpg");
}

.header-background-bottom {
    position: relative;
    height: 50%;
    background-color: var(--header-bg-bottom-color);
}

.header-profile {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-profile-circle {
    width: var(--profile-circle-size);
    height: var(--profile-circle-size);
    border: solid 8px white;
    border-radius: 50%;
    background-color: white;
}

.header-profile-image {
    width: 100%;
    height: 100%;
}

@keyframes dash-animation {
    to {
        stroke-dashoffset: 0;
    }
}

.mandala {
    width: 256px;
    height: 256px;
}
