::selection {
    background: #f5f5f5;
    /* WebKit/Blink Browsers */
}

::-moz-selection {
    background: #f5f5f5;
    /* Gecko Browsers */
}

@font-face {
    font-family: 'Gordita';
    src: url("../assets/fonts/Gordita.otf");
}

html {
    font-size: 50%;
    /*100%/14px which is default font size by default*/
}

*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

body {
    font-family: 'Gordita';
    overflow-x: hidden;
    font-size: 1.6rem;
    /* line-height: 1.4; */
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    height: 80vh;
    width: 100vw;
}

.logo img {
    height: 3rem;
}

.logo img:hover {
    opacity: .7;
}

a {
    color: blue;
}

a:hover {
    color: rgb(163, 163, 255);
    text-decoration: none;
}

.img-cus {
    width: 9em;
    margin: 20px 0;
}

.cursor {
    position: absolute;
     /* background: black; */
    width: 30px;
    height: 30px;
    border: 1px solid black;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    pointer-events: none;
    cursor: pointer;
}

.loader {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    background: #000000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

li {
    list-style-type: none;
}
