
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');


body {
    font-family: "Jersey 10", sans-serif;
    background-image: url('https://wallpapercave.com/wp/wp3469876.png'); 
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-color: rgb(255, 254, 254);
    backdrop-filter: blur(0px);
    overflow: hidden;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
}

.gif-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: relative;
    top: 460px;
}

.gif {
    position: fixed;
    top: 18;
    left: 0;
    right: 0;
    bottom: 0;
}

.gif:first-child {
    margin-left: 10px;
}

.gif img {
    width: 25px;
    height: 25px;
    transition: all 0s ease;
    filter: brightness(100);
    position: fixed;
}


.click-to-enter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    opacity: 1;
    z-index: 1;
    
}

.click-to-enter.hidden {
    opacity: 0;
}

.bio {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgb(0, 0, 0);
    background-color:transparent;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 250px;
    padding: 20px;
    width: 50%;
    max-width: 600px;
}

.icon-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    transition: all 0.5s ease;
    text-decoration: none;
    margin-right: 10px;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: black;
}

.icon:first-child {
    margin-left: 10px;
}

.icon:hover {
    transform: scale(1.3);
    transition: all 0.5s ease;
}

.icon img {
    width: 20px;
    height: 20px;
    transition: all 0s ease;
    filter: brightness(100);
}

.icon:hover img {
    filter: brightness(1);
}

.icon::after {
    content:attr(data-title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(255, 255, 255, 0.8);
    color: rgb(0, 0, 0);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.2s ease;
}

.icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.description {
    font-size: 18px;
    overflow: break-word;
}