@font-face {
    font-family: "hehe";
    src: url(./fonts/fonts.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box

}

body{
    display: flex;
    justify-content: center; /*horizontally center the stuffs*/
    align-items: center; /*Vertically center the stuffs*/
    min-height: 100vh;
    background-color: #1a1919;
}

.box{
    position: relative;
    width: 280px;
    height: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:rgb(19, 14, 14);
    border-radius: 20px;
    overflow: hidden;
}

.box h2{
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px black;
}

.box::before{
    content: '';
    position: absolute;
    width: 170px;
    height: 140%;
    background: linear-gradient(#00ccff, #d500f9);
    animation: rotate 4s linear infinite;
}

.box::after{
    content: '';
    position: absolute;
    background: #121214;
    inset: 5px;
    border-radius: 16px;

}

@keyframes rotate{
    from{
        transform: rotate(0deg)
    }
    to{
        transform: rotate(360deg);
    }
}


.info{
    z-index: 1;
    font-size: 3.5vh;
    justify-content: center;
    align-items: center;
    font-family: hehe;
    color: aliceblue;
    text-align: center;
    
}

c{
    background: linear-gradient(to right, #ff0404,
    #29ff08, #0affff, #710efb);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}


.not_found{
    z-index: 1;
    font-size: 3.9vh;
    justify-content: center;
    align-items: center;
    font-family: hehe;
    color: aliceblue;
    text-align: center;
}

.socials{
    margin-top: 4vh;
    text-align: center;
    font-size: 40px;
}
a{
    text-decoration: none;
}

b{
    font-size: 2.9vh;
    
}


.fa-instagram{
    color: #C13584;
}

.fa-github{
    color: #f5f5f5;
}

.fa-discord{
        color: #fff;
}
