
* {
    margin: 0;
    padding: 0;
}

html, body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-image: url("../src/wallpaper.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body > p {
    position: fixed;
    margin-bottom: clamp(0px, 40vw, 40vh);;
    text-align: center;
    font-size: clamp(0px, 4vw, 4vh);
    color: white;
    text-shadow: black 0px 0px 4px;
}

.commentBubble {
    position: fixed;
    padding: 10px 20px;
    max-width: clamp(0px, 30vw, 30vh);
    background-color: rgba(241, 228, 228, 0.7);
    color: rgb(147, 1, 1);
    font-size: clamp(0px, 2.5vw, 2.5vh);
    border-radius: 12px;
    white-space: nowrap;
    z-index: 0;
    
    text-overflow: clip;
    overflow: hidden;
    text-wrap: unset;
}

#wallpaper {
    position: fixed;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(3px);
    z-index: 0;
}

#gift {
    position: fixed;
    height: 80px;
    width: 80px;
    bottom: 20px;
    right: 20px;
    background-color: whitesmoke;
    background-image: url("../src/gift.png");
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: #830304 solid 3px;
    cursor: pointer;
    z-index: 2;
    animation: giftShake 1s infinite alternate;
}

@keyframes giftShake {
    0% {
        rotate: 0deg;
    }
    15% {
        rotate: 15deg;
    }
    30% {
        rotate: -15deg;
    }
    50% {
        rotate: 0deg;
    }
    100% {
        rotate: 0deg;
    }
}

#giftOptions {
    display: none;
    position: fixed;
    flex-direction: column;
    height: 100px;
    width: 100px;
    bottom: 10px;
    right: 10px;
    background-color: whitesmoke;
    border: #830304 solid 3px;
    border-radius: 12px;
    padding: 10px;
    z-index: 2;
}

#giftOptions > button {
    margin-top: 5px;
    padding: 8px;
    border: none;
    border-radius: 8px;
    background-color: #D1190C;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

#giftOptions > button:hover {
    background-color: #830304;
}

/* clamp(0px, 100vw, 90vh) */
#profile {
    display: flex;
    flex-direction: column;
    height: 0px;
    width: clamp(0px, 80vw, 80vh);
    background-color: white;
    border-radius: 24px;
    z-index: 1;
    overflow: hidden;
    border: 4px solid #ccc;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: height 0.5s ease;
}

#banner {
    height: clamp(0px, 20vw, 20vh);
    width: 100%;
    background-image: url("../src/banner.jpg");
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

#biography {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    background: linear-gradient(to bottom, #f0f0f0 20%, rgb(255, 135, 135) 120%);
}

#profilePicture {
    position: fixed;
    height: clamp(0px, 15vw, 15vh);
    width: clamp(0px, 15vw, 15vh);
    background-image: url("../src/profile.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 4px solid white;
    border-radius: 50%;
    translate: 0 -50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#profilePicture > p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(-25px, -4vw, 0px);
    margin-left: clamp(-35px, -8vw, 0px);
    height: clamp(0px, 8vw, 50px);
    width: clamp(0px, 20vw, 100px);
    position: fixed;
    font-size: clamp(0px, 3vw, 24px);
    font-weight: bolder;
    color: yellow;
    text-shadow: black 0px 0px 8px;
    rotate: -36deg;
    background-color: rgba(137, 137, 255, 0.40);
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

#particles {
    height: 100%;
    width: 100%;
    background-image: url("../src/snow.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

#biography h1 {
    margin-top: clamp(0px, 9vw, 9vh);
    width: 90%;
    line-height: 100%;
    text-align: center;
    font-size: clamp(16px, 4vw, 32px);
    color: #D1190C;
    border-bottom: solid 1px #3f3f3f;
}

#biography > h1 > span {
    font-size: clamp(0px, 2.5vw, 2.5vh);
    color: #830304;
}

#biography > h2 {
    width: 90%;
    line-height: 180%;
    text-align: center;
    font-size: clamp(0px, 3.8vw, 3vh);
    color: #456E5C;
}

#categories {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}

#aboutMe {
    flex: 3;
    padding: 2%;
    overflow: hidden;
}

#aboutMe > h2 {
    text-align: center;
    font-size: clamp(0px, 3vw, 3vh);
    color: #2E4A3B;
}

#aboutMe > p {
    font-size: clamp(0px, 2.5vw, 2.5vh);
    color: #830304;
    line-height: 150%;
}

#like {
    flex: 1;
    padding: 2%;
    overflow: hidden;
}

#like > h2 {
    font-size: clamp(0px, 3vw, 3vh);
    color: #2E4A3B;
}

#like > ul {
    list-style-type: disc;
    padding-left: 10%;
}

#like > ul > li {
    margin-top: 4px;
    color: #830304;
    font-size: clamp(0px, 2.5vw, 2.5vh);
}