@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700&display=swap');

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

body {
    font-family: 'Satoshi', Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.maj__wrapper {
border:15px solid white;
background-color: black;
width: 100vw;
height:100svh;
display: flex;
justify-content: center;
align-items: center;
}


.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    perspective: 1000px;
}

#logo {
    cursor: none;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    display: block;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease, border-width 0.3s ease;
    z-index: 9999;
    mix-blend-mode: difference;
    left: 0;
    top: 0;
}

.custom-cursor.active {
    width: 40px;
    height: 40px;
    border-width: 3px;
}

.custom-cursor.hover-link {
    width: 50px;
    height: 50px;
    border-width: 1px;
}

* {
    cursor: none !important;
}

body {
    cursor: none;
}

h1 {
    color: #333;
    margin-top: 1rem;
}

p {
    color: #666;
    margin-bottom: 1.5rem;
}


a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #666;
    text-decoration: underline;
}
