/* .image {
    border-radius: 10px;
    height: 300px;
    width: 250px;
}

.para {
    color: yellow;
    font-weight: bolder;
}

body {
    background-color: rgb(140, 82, 6);
    color: yellow;
} */

* {
    margin: 0;
    padding: 0;
}

.wrapper {
    background: #161a1d;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: url('icons8-minecraft-sword-16.png'), auto;
}

nav ul {
    list-style: none;
}

nav ul li {
    margin: 32px 0;
    animation: fade-down 2000ms forwards ease-in-out;
    transform: translateY(-100px);
    opacity: 0;
}

@keyframes fade-down {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

nav ul li a {
    color: #cbf3f0;
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 8px;
    position: relative;
}

nav ul li a::after {
    content: "";
    width: 0;
    height: 8px;
    background-color: yellow;
    position: absolute;
    bottom: -8px;
    left: 0;
    transition: 500ms;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    cursor: url('icons8-minecraft-sword-16.png'), auto;
}

.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid lightgray;
    left: 0;
    transform: translate(-20%, -50%);
    pointer-events: none;
    transition: width 1000ms, height 1000ms;
}

.cursor.large {
    height: 70px;
    width: 70px;
    transform: translate(-50%, -50%);
}

img {
    position: relative;
    margin-left: 50px;
}