@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,500&display=swap');

body {
    margin: 0;
    overflow: hidden;
    background-color: #1a1a1a;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    position: relative;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.profile {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    background: grey;
    width: 360px;
    height: 340px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.userbox {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    background: grey;
    width: fit-content;
    height: fit-content;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.raindrop {
    position: absolute;
    bottom: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: fall linear infinite;
    z-index: 5;
}

@keyframes fall {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

.user {
    margin: 0;
    margin-top: -90px;
}

.text {
    color: aliceblue;
}

.pic {
    position: relative;
    top: 10px;
}

.img {
    width: 100px;
    border-radius: 50%;
}

.img-link {
    width: 30px;
    background-color: white;
    border-radius: 15px;
    position: relative;
    top: 40px;
    transition: transform 0.3s ease; 
    display: inline-block; 
}

.img-link:hover {
    animation: bounce 1s forwards; 
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.25);
    }
    60% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.bio {
    height: 5px;
    font-size: 12px;
}
br {
    margin: 0;
}

.click {
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: gray;
    opacity: 0;
}
