@keyframes intro {
    from {opacity: 0%;}
    to {opacity: 100%;}
}

p {
    color: white;
}

.number {
    position: absolute;
    width: inherit;
    height: inherit;
    animation-name: intro;
    animation-duration: 2s;
    margin:0;
    transform: translate(75px, 35%);
}

.body_holder {
    margin:auto;
    height:fit-content;
    width:75px;
    text-align: center;
    animation-name: intro;
}

.body {
    outline: 4px double white;
    height: 40px;
    width: 40px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 100%;
    position: relative;
    animation-name: intro;
    animation-duration: inherit;
}

body {
    background-color:black;
    overflow-x: hidden;
    font-family: 'Courier New', Courier, monospace;
}