html,
body {
    margin: 0;
    padding: 0;
}

* {
    cursor: url('../img/cursor.png'), auto;
}

body.custom {
    background-image: url('../img/bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto;
    background-color: #000;

    min-height: 1440px;
}

/* LOGO */
.logo-box {
    width: 100%;
    text-align: center;

    position: absolute;
    top: 150px;
    left: 0;
}

.main-logo {
    width: 500px;
    max-width: 100%;

    animation: zoomLogo 4s ease-in-out infinite;
}

@keyframes zoomLogo {

    0% {
        transform: scale(1.45);
    }

    50% {
        transform: scale(1.55);
    }

    100% {
        transform: scale(1.45);
    }
}