*{
    margin: 0;
    padding: 0;
}

body{
    background-image: url("/assets/starbub2.gif");
}
main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.bubble_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    height: 250px;
    margin: 100px;
}
.bubble {
    display: flex;
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(rgba(255,255,255,0) 50%,rgb(255, 255, 255) 100%);
    align-items: center;
    justify-content: center;
}
.bubble::after{
    content: '';
    background: radial-gradient(ellipse at center, rgba(255,255,255,0) 50%,rgb(255, 255, 255) 70%);
    background-position: top;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
}
.bubble::before{
    content: '';
    background: radial-gradient(ellipse at center, rgb(255, 255, 255) 40%, rgba(255,255,255,0) 80%);
    width: 50px;
    height: 30px;
    rotate: -20deg;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 30px;
    right: 0;
    bottom: 0;
    
}
.bubble_name{
    color: black;
    background-color: black;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    margin-top: 30px;
    z-index: 3;
    position: relative;
}
.bubble_name::before{
    content: '';
    background-color: rgb(234, 0, 255);
    position: absolute;
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
    rotate: 2deg;
    z-index: -1;
}
.bubble_name::after {
    content: '';
    background: aquamarine;
    position: absolute;
    inset: 0;
    z-index: -1;
}

a{
    text-decoration: none;
    color: none;
    cursor: pointer;

}

.bubble img{
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.row {
    display:flex;
}