body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #000022;
}

#main {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #0000FF;
    background-image: radial-gradient(blue, #000);
}

#eyeBig {
    z-index: 30;
    align-self: center;
    width: 500px;
}

#bg1Parent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 20;
    align-self: center;
    transform-origin: center;
    animation: rotation 20s linear infinite;
    -webkit-animation: rotation 20s linear infinite;
}

#bg1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    align-self: center;
    transform-origin: left top;
    animation: zoom 3s infinite alternate ease-in-out;
    -webkit-animation: zoom 3s infinite alternate ease-in-out;
}
#info{
    position: absolute;
    width:100%;
    height: 100%;
    z-index: 100;
    top:0;
    left:0;
    background-color:#000022;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
p {
    align-self: center;
    color: white;
    letter-spacing: 0px;
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
    font-weight:100;
}

#curious {
    align-self: center;
    width: 60vw;
    min-width: 50px;
    fill: #1a1ac1;
}

.showInfo {
    animation: reveal 2s ease-out;
    -webkit-animation: reveal 2s ease-out;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
@keyframes reveal {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
@-webkit-keyframes reveal {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}
@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}
@keyframes zoom {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.3, 1.3);
    }
}
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.3, 1.3);
    }
}

