html, body {
    height: 100%;
    margin: 0;
    /*overflow: hidden;  Hide vertical scrollbar */
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    margin: 0;
    background-color: #f0f0f0;
    -webkit-user-select: none;
    user-select: none;
}

.container {
    position: relative;
    width: 100vw;
    width: 100svh;
    height: 100vh;
    height: 100svh; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.blur-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: linear-gradient(
        135deg,
        #151b27 2%,
        #159193 33%,
        #afbbad 55%,
        #cdb6a6 70%,
        #dd886b 85%,
        #904834 100%
    );
    filter: blur(0px) saturate(1.1) brightness(1.1);
    background-size: cover;
    z-index: 1;
    width: 100vw;
    height: 100vh;
}

.content {
    text-align: center;
    background: white;
    padding: 20px 40px; 
    padding-left: max(40px, env(safe-area-inset-left));
    padding-right: max(40px, env(safe-area-inset-right));

    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    filter: none;
    position: relative;
    z-index: 2;
    color: white;
    width: fit-content;
    width: 50vw;
    max-width: 80ch;
    min-width: 30ch;
    height: auto;
    max-height: 80dvh;
    overflow: auto;
}

.content p {
    -webkit-user-select: text;
    user-select: text;
}

img.profile {
    transform: rotate(9deg);
}

img.profile:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1.name {
    font-family: "DM Sans", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    line-height: 100%;
    /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05); */
    color: #000;
    /* word-break: break-all; */
    background-image: linear-gradient(-45deg, #151b27, #159193);
    color: transparent;
    background-clip: text;
    font-size: 2em;
    margin-block-start: 0.415em;
}

p, h1, h2 {
    color: #000;
    font-family: "DM Sans", serif;
}

h2 {
    color: #333;
}


a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    opacity: 1;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}

.socials svg:hover {
    fill: #159193;
}

.socials a {
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    padding: 5px;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: rgba(5, 5, 5, 0.75);
    z-index: 1;
    font-weight: 400;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
    word-break: keep-all;
}