.profile-page {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: auto;
    background: 
        radial-gradient(
            circle at bottom right,
            rgba(0, 43, 54, 0.3) 60%,
            rgba(0, 43, 54, 0.5) 10%,
            rgba(0, 43, 54, 0.4) 80%
        ),
        linear-gradient( rgb(0, 240, 255), rgb(0, 105, 131));
}

.profile-page-body {
    border-radius: 0.5rem;
    position: relative;
    top: 10vh;
    text-align: center;
    width: min(98%, 500px);
    height: 79vh;
    background-color: white;
    font-size: large;
    padding-top: 100px;
}

.profile-page-claim {
    margin-bottom: 30px;
}

.profile-page-pic {
    position: absolute;
    z-index: 10;
    border-radius: 100%;
    top: 10vh;
    width: 180px;
    aspect-ratio: 1;
    background-color: white;
}

.profile-page-pic-inner {
    position: relative;
    top: 10px;
    left: 10px;
    border-radius: 100%;
    aspect-ratio: 1;
    width: 160px;
    background: linear-gradient( rgb(0, 240, 255), rgb(0, 105, 131));
}

.profile-page-pic-head {
    aspect-ratio: 1;
    top: 10px;
    border-radius: 100%;
    background-color: white;
    width: 70px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.profile-page-pic-body {
    aspect-ratio: 1.5;
    top: 15px;
    border-radius: 100%;
    background-color: white;
    width: 100px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
