/* GENERAL */

* {
    cursor: none !important;
}

body {
    background-color: #0033a0;
    margin: 5rem;
    padding: 0;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    cursor: none !important;
    height: 100vh;
    overflow: hidden;
}


/* ------------------------------------------- */


/* CUSTOM CURSOR */

.main-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    isolation: isolate;
}

.cursor {
    width: 25px;
    height: 25px;
    background-color: #e9eae8;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference; 
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border 0.3s, background-color 0.3s;
}

.cursor.hovering {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1.5px solid #e9eae8;
}


/* ------------------------------------------- */


/* TEXT SELECTION */

::selection {
    background-color: #ffffff;
    color: #0033a0;
}

::-moz-selection {
    background-color: #ffffff;
    color: #0033a0;
}


/* ------------------------------------------- */


/* COMING SOON PAGE */

h1, p {
    color: #e9eae8;
    text-align: center;
    margin: 0;
}

h1 {
    font-weight: 700;
    font-size: 68pt;
    line-height: 68pt;
    padding-top: 8%;
}

p {
    font-size: 14pt;
    line-height: 18pt;
    position: absolute;
    bottom: 8rem;
    width: 100%;
}

.dots {
    font-family: "bombarda", serif;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 6pt;
    font-size: 61pt;
}


/* ------------------------------------------- */


/* SHAKE ANIMATION */

@keyframes shake {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2px, -2px) rotate(1deg); }
    50% { transform: translate(-2px, 2px) rotate(-1deg); }
    75% { transform: translate(2px, 2px) rotate(0.5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.shake-hover {
    display: inline-block;
    transition: color 0.3s ease;
    cursor: none !important;
}

.shake-hover:hover {
    animation: shake 0.2s infinite;
    color: #ffffff;
}


/* ------------------------------------------- */


/* RESPONSIVE */

@media (max-width: 992px) {
    h1 {
        font-size: 58pt;
        line-height: 58pt;
    }
    .dots {
        font-size: 51pt;
    }
    p {
        font-size: 12pt;
        line-height: 16pt;
    }
    * {
        cursor: auto !important;
    }
    
    .cursor {
        display: none !important;
    }
    .content {
        mix-blend-mode: normal !important;
    }
    .shake-hover:hover {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 41pt;
        line-height: 41pt;
    }
    .dots {
        letter-spacing: 5pt;
        font-size: 34pt;
    }
}

@media (max-width: 600px) {
    body {
        margin: 1rem;
    }
    h1 {
        padding-top: 25%;
    }
    p {
        bottom: 3rem;
    }
}