* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: black;
    transition: 300ms;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
}

::selection {
    background-color: rgb(16, 74, 88);
    color: rgb(193, 193, 139);
}

.imageSpin {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateY(0deg);
    max-width: 90%;
    max-height: 90%;
    animation-name: spin;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 5s;
    -webkit-animation-name: spin;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 5s;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotateY(0deg);
        moz-transform: translate(-50%, -50%) rotateY(0deg);
        ms-transform: translate(-50%, -50%) rotateY(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotateY(360deg);
        moz-transform: translate(-50%, -50%) rotateY(360deg);
        ms-transform: translate(-50%, -50%) rotateY(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: translate(-50%, -50%) rotateY(0deg);
    }
    to {
        -webkit-transform: translate(-50%, -50%) rotateY(360deg);
    }
}


