@font-face {
    font-family: IBM;
    src: url(/Px437_IBM_Model30r0.ttf);
}

body {
    background-color: black;
    min-height: 100%;
    width: auto;
    padding-top: 80px;
}

p {
    font-family: IBM;
    font-size: 16px;
    color: #bf6160;
    position: relative;
    width: 720px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

a {
    font-family: IBM;
    font-size: 16px;
    color: #a40e0d;
    position: relative;
    width: 720px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.block {
    animation: fade_in .5s infinite alternate;
}

@keyframes fade_in {
    0% {
        opacity: 0;
    }
    100% {opacity: 1;
    }
}

.post {
    font-family: IBM;
    font-size: 16px;
    color: #a40e0d;
    text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
    font-family: IBM;
    color: #a40e0d;
    text-decoration: underline;
}

.main_wrapper {
    position: relative;
    left: 50%;
    width: 900px;
    height: 800px;
    padding: 8px;
    background-image: url("../Pages/Injection/Video_GIFs/Sound400x400.gif");
    border: 4px solid #a40e0d;
    transform: translate(-50%, -5%);
    overflow: auto;
}

.ph1 {
    text-align-last: center;
}

.body_text span {
    display: inline-block;
    animation: wave 1.75s ease-in-out infinite;
}

.body_text span:nth-child(1) {
    animation-delay: 0s;
}
.body_text span:nth-child(2) {
    animation-delay: 0.12s;
}
.body_text span:nth-child(3) {
    animation-delay: 0.24s;
}
.body_text span:nth-child(4) {
    animation-delay: 0.36s;
}
.body_text span:nth-child(5) {
    animation-delay: 0.48s;
}
.body_text span:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}