 body{
    background-color: rgb(7, 49, 61);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40vh;
    flex-direction: column;
    gap: 20px;
 }
 .orbit-circle{
    display: inline-block;
    position: relative;
    height: 200px;
    width: 200px;
    transform-origin: center;
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 0 15px #4bbce7;
    box-sizing: border-box;
    animation: orbit 10s infinite linear;
    animation-delay: 0.25s;
 }

 .orbit-object{
    background-color: #fff;
    position: absolute;
    top: 40px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 
        0px 0px 10px #54f7f8,
        0px 0px 20px #54f7f8,
        0px 0px 30px #54f7f8,
        0px 0px 50px #54f7f8,
        0px 0px 60px #54f7f8;
 }

 .ripple{
    position: relative;
    top: -4px;
    left: 4px;
    width: 8px;
    height: 8px;
    padding: 5px;
    font-size: 0px;
    border-radius: 50%;
    box-shadow: 
        0 0 0 0 rgba(84, 247, 248, 0.1),
        0 0 0 5px rgba(84, 247, 248, 0.1),
        0 0 0 10px rgba(84, 247, 248, 0.1),
        0 0 0 15px rgba(84, 247, 248, 0.1);
    background-color: transparent;
    animation: ripple 1s infinite linear;

 }
 @keyframes orbit{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
@keyframes ripple{
        0% {
            box-shadow: 
            0 0 0 5 rgba(84, 247, 248, 0.1),
            0 0 0 10px rgba(84, 247, 248, 0.1),
            0 0 0 15px rgba(84, 247, 248, 0.1),
            0 0 0 20px rgba(84, 247, 248, 0);
        }
        100% {
            box-shadow: 
            0 0 0 5 rgba(84, 247, 248, 0.1),
            0 0 0 10px rgba(84, 247, 248, 0.1),
            0 0 0 15px rgba(84, 247, 248, 0.1),
            0 0 0 20px rgba(84, 247, 248, 0);
        }
    }
    audio{
        padding-top: 80px;
    }