@font-face {
    font-family: "myCustomFont";
    src: url("../assets/font.ttf") format("truetype");
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: "myCustomFont", sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}


body::before {
    content: "";
    position: fixed;
    inset: -40px;
    background: url("../assets/background.jpg") center/cover no-repeat;
    filter: blur(1px);
    opacity: 0.35;
    z-index: -1;
}

* {
    cursor: url("../assets/cursor.png"), auto !important;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}


.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px #cacaca;
}


.username {
    margin-top: 12px;
    font-size: 22px;
    color: #fff4fa;
}


#intro {
    position: absolute;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease;
    font-size: 24px;
    color: #fff4fa;
}


#content {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    pointer-events: none;
}


.icon-row {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}


.icon {
    width: 32px;
    height: 32px;
    transition: opacity 0.2s;
}


.icon:hover {
    opacity: 0.7;
}