/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'nimbus-sans', sans-serif;
    line-height: 1.6;
    color: rgb(0, 0, 0);
    font-weight: 550;
    font-style: normal;
    line-height: 1.2;
    background-color: #fff;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}


/* Your styles go here */

/* Text selection highlight color */
::selection {
    background-color: rgb(0, 255, 0);
    color: rgb(0, 0, 0);
}

::-moz-selection {
    background-color: rgb(0, 255, 0);
    color: rgb(0, 0, 0);
}

a{
    color: rgb(0, 0, 0);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

a:hover{
    opacity: 0.5
}

#square{
    width:13px;
    height:13px;
    margin-right: 7px;
    margin-bottom: -1px;
    background-color: rgb(0, 0, 0);
    top: 0;
    left: 0;
    z-index: 1000;
    animation: square 3s linear infinite;
    display: inline-block;
}

@keyframes square{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}