* {
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    user-select: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    transition: 0.1s;
}

.createdByTag {
    top: 50%;
    left: 50%;
    display: inline-block;
    position: absolute;
    text-align: left;
    margin-left: -32pc;
    margin-top: 23pc;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    background-image: url('./togif.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 200%;
    height: 110%;
    transform: translateX(-50%);
    will-change: transform;
    animation: bgMove 25s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0% {
        transform: translateX(-50%) translateX(0);
    }

    50% {
        transform: translateX(-50%) translateX(200px);
    }

    100% {
        transform: translateX(-50%) translateX(0);
    }
}

.box {
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    background: transparent;
}

.box h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.gradient-text {
    background: linear-gradient(90deg, #ffbb00, #ff0095);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.box p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.png {
    width: 120px;
    border-radius: 21px;
}

.download {
    display: inline-block;
    padding: 14px;
    width: 200px;
    border-radius: 11px;
    font-size: 17px;
    background: #00000074;
    backdrop-filter: blur(66px);
    margin-top: 20px;
    transition: background 0.3s;
}

.download:hover {
    background: #000000ab;
}

.download a {
    text-align: center;
    color: #fff;
    text-decoration: none;
}

.fmodico {
    width: 100px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.skin {
    width: 200px;
}

.buttons {
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    margin-top: 30pc;
}

.buttons a {
    display: inline-block;
    padding: 8px;
    width: 100px;
    background: linear-gradient(90deg, #00000063, #00000045);
    border-radius: 11px;
    color: #fff;
    backdrop-filter: blur(66px);
    margin-left: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    text-shadow: 3px 6px 12px #000;
    transform: perspective(1000px) translateZ(0);
    animation-delay: 2ms;
    -webkit-user-drag: none;
    user-select: auto;
    -webkit-user-modify: read-only;
}

.buttons a:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}