@font-face {
    font-family: Acadia;
    src: url(../fonts/mc.ttf);
  }
  ::selection {
    color: white;
    background-color: black;
  }
  
audio{
    display:none
}
.blurpage{
    background:rgb(0 0 0/20%);
    backdrop-filter:blur(10px);
    position:fixed;
    padding:0;
    margin:0;
    top:0;
    left:0;
    width:100%;
    height:100%;
    transition:all .5s ease-in-out
}
.blurpagerplc{background:0 0;backdrop-filter:none}
.blurpagerplc2{width:10%;height:10%}

.blur{
    background: rgb(0 0 0 / 40%);
    backdrop-filter: blur(8px); 
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 30px 0px;
    margin-top: 80px;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('../images/lonely-cat-in-the-rain-stray-moewalls-com.gif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    cursor: url(../c.cur), auto;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    padding: 20px;
    background-color:transparent
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.profile-box {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    width: 225px;
    height: 225px;
    
}

.profile-box:hover {
    cursor: crosshair;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.8);
}

.profile-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.profile-box h2 {
    margin: 10px 0;
    font: 1.1rem "Acadia", sans-serif; 
}
.profile-box p {
    font-size: 10px;
    margin-top: 5px;
    color: #ffffff;
    font: 0.95rem "Fira Sans", sans-serif; 
}
.center{
    margin: 0 auto;
    text-align: center;
}
.socials {
    margin-top: 10px;
    
}

.socials a {
    margin: 0 5px;
    display: inline-block;
    
}

.socials a i {
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-size: 20px;
    position: inherit;
}

.socials a i:hover {
    transform: scale(1.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.typewriter {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    white-space: nowrap; /* Keeps the content on a single line */
    animation: typing 5s steps(40, end);
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.musicbtn{
    font-size:16px;
    color:#bdbdbd;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:50px;padding:14px;
    border:none;
    border-radius:5px;
    outline:none;
    box-shadow:2px 2px 4px rgba(0,0,0,.4);
    cursor:pointer;
    transition:all 2s ease-out;
    transition-timing-function:cubic-bezier(.1,1,0,1);
    transform-origin:right top;
    opacity:.8
}
.musicbtn:hover{
    opacity:1
}

audio{
    display:none
}
.replace{
    transform:translate(0,0);
    opacity:.2;
    top:0;
    left:0
}
.replace:hover{
    opacity: .5;
}
#notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

#notification.show {
    opacity: 1;
}