* {
    padding: none;
    margin: none;
}

body {
    background-color: rgb(37, 37, 37);
    align-items: center;
}

h2 {
    color: white;
    font-size: 3em;
    font-family: "Geist Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
}

p,a {
    color: white;
    font-family: "Geist Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.clock {
    font-family: 'Geist Mono', monospace;
    font-size: 1em;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    padding: 1em;
}

body, a {
    cursor: none; 
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    
    mix-blend-mode: difference; 
    pointer-events: none;
    
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, transform 0.15s ease-out;
    transform: translate(-50%, -50%) scale(1);
}

#custom-cursor.is-clicked {
    transform: translate(-50%, -50%) scale(0.6);
}

::selection {
    background-color: white;
    color: rgb(37, 37, 37);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(37, 37, 37);
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: white;
}

hr {
    border: none;
    border-top: 1px solid white;
    height: 0;
    width: 85%;
    transform: scaleX(0); 
    transform-origin: center;
    animation: expandLine 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards;

    opacity: 0.5;
    transition: opacity 0.4s ease, border-top 0.4s ease;
}

@keyframes expandLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
