@import url('https://fonts.googleapis.com/css2?family=Nerko+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap'); 

*{
    scroll-behavior: smooth;
}

body {
  
    background-color: #000;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Nerko One", cursive;
}

.blob-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; 
}

.blob {
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 2s ease-out;
}

.blob:hover {
    transform: scale(1.5);
}

.profile-img {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%; 
    object-fit: cover;  
    border: 2px solid white;
}

h1 {
    color: white;
    margin-top: 25px;
    text-align: center;
}

.profile-name {
    color: rgb(255, 255, 255);
    margin-top: 20px;
    text-align: center;
    font-size: 50px;
}

#click1 h1{
    font-family: "Hanken Grotesk", sans-serif;
    color: #43b6b6;
}