
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    /* cursor: none; */
}

body {
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

ul {
    position: relative;
    display: flex;
}

ul li {
    list-style: none;
    /* list-style: armenian; */
    margin: 0 30px;
}

ul li a {
    position: relative;
    display: inline-block;
    font-size: 102px;
    text-decoration: none;
    color: white;
    transition: 0.2s;
}

.cursor1 {
    cursor: url(cursors/birthdayBox.cur), pointer;
}

.cursor2 {
    cursor: url(cursors/champagne.cur), pointer;
}

.cursor4 {
    cursor: url(cursors/amogus1.cur), pointer;
}

.cursor3, .cursor5 {
    cursor: url(cursors/amogus2.cur),pointer;
}

ul li:hover a {
    color: #2196f3;
    /* transition: 0.5s; */
}

.cursor {
    position: fixed;
    width: 0;
    height: 0;
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ul .cursor {
    position: fixed;
    width: 0;
    height: 0;
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
} */

/* ul li:hover ~ .cursor {
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    transition: width 0.2s, height 0.2s;
    border: 3.5px solid #2196f3;
} */

@media screen and (min-width: 300px) and (max-width: 800px) {
    ul {
        flex-direction: column;
    }

    ul li {
        margin: 20px 0;
    }

    ul li a {
        font-size: 65px;
    }
}
