body {
    background: linear-gradient(violet, white, violet), url(/Profile-page/secondary-pngs/ombrewater.webp); 
    background-blend-mode: screen;
    background-size: 100%;

}


#box {
    background: linear-gradient(45deg,violet, white, violet);
    width: 800px;height: 600px;

    margin: 0 auto;

    position: fixed; left: 550;  top: 10%;
    place-items: center;
    
    display: flex; flex-direction: column; justify-content: space-evenly;    
  
    box-sizing: border-box;
    padding: 10px;
    border-radius: 50px;
    border: ridge 25px violet; outline: .5rem solid rgb(84, 24, 139);
    
}

#box img {
    width: 50%;
    height: 100%;
    object-fit: contain;

    position: relative;
    bottom: 50px;
}

/* https://projects.verou.me/bubbly */

@font-face {
    font-family: home;
    src: url(/Universal-Assets/Fonts/HomeVideo-BLG6G.ttf);
}

.speech-bubble {
	position: relative; top: 380; left: 1055px;
	background: violet;
	border-radius: .4em;
    max-width: fit-content;
    padding: 10px; font-size: large; font-family: home; text-indent: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 10;

}

.speech-bubble:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-right-color: violet;
	border-left: 0;
	border-bottom: 0;
	margin-top: -10px;
	margin-left: -20px;

}
    

.pfp {
    background-color: rgba(178, 70, 182, 0.26);
    background-size: 100%;
    width: 250px;
    height: 250px;

    border-radius: 10px;
    border: outset 10px;

    position: relative;
    top: -40px;
}

.items {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    position: relative;
    bottom: 70px;
}

.items button {
    position: relative;
    top: 10px;
    padding: 25px;
    width: 150px;
}

button {
    color: #000;
    border: 1px solid #9b8cdf00; border-radius: 25px;
    background: violet;
    padding: 5px;
    transition-duration: .3s;
    font-family: home; font-size: large;
}

button:hover {
    color: rgb(255, 255, 255);
    background: linear-gradient(180deg, #452888, #7e2e70 86%, #3a2f70);
}
.froggy {
    max-width: fit-content;
    position: fixed; left: 475px; top: 300;
    z-index: 5;
}

.froggy img {
    width: 250px;
    transform: ;
}

.stars {
    position: fixed; right: 380;
    z-index: 5;
    rotate: -30deg;
}

/* From: https://unused-css.com/blog/css-shake-animation*/

img.gentle-hover-shake:hover {
  animation: tilt-shaking 0.25s infinite;
}

@keyframes tilt-shaking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(0eg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

