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

@font-face {
    font-family: 'Space Grotesk Regular';
    src: url('fonts/SpaceGrotesk-Regular.woff2') format('woff2'), url('fonts/SpaceGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #0000FF;
    font-family: 'Space Grotesk Regular';
}

#main {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 80%;
    margin: 0 auto;
}

.logotipo {
    width: 30%;
}

.cursor-dot,
.cursor-dot-outline {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #0000FF;
}

.cursor-dot-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255);
    mix-blend-mode: difference;
}

.hi {
    color: #FFF;
    width: 70%;
    text-align: right;
    letter-spacing: 0.6px;
}

@media screen and (max-width: 600px) {
    .logotipo {
        width: 70%;
    }
    .hi {
        font-size: 13px;
        position: absolute;
        bottom: 40px;
        right: 40px;
    }
}