body {
    background-color: #000;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    perspective: 1000px;
}

.spherical-logo {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('chrisgough-logo.svg') center/cover no-repeat;
    background-color: #fff;
    border-radius: 50%;
    animation: rotate 10s linear infinite, pulse 2s ease-in-out infinite alternate, glow 2s ease-in-out infinite alternate;
    transform-style: preserve-3d;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes rotate {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(1turn);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 1);
    }
}