@font-face {
    font-family: MSW98UI;
    src: url('MSW98UI-Regular.ttf');
}

body {
    background: url('sora5.gif');
    font-family: 'MSW98UI', 'Courier New', Courier, monospace;
}
#header {
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: 0 0 7px #010885;
}


#header p {
    padding: 0;
    margin-bottom: 50px;
}

#header input {
    width: 100px;
    display: block;
    position: absolute;
    font-family: MSW98UI;
}

#bounceText {
    font-size: 3em;
    padding: 0;
    margin: 0;
    text-shadow:
        2px 2px 5px red,
        4px 4px 5px orange,
        6px 6px 5px yellow,
        8px 8px 5px green,
        10px 10px 5px blue,
        12px 12px 5px indigo,
        14px 14px 5px violet;
    color: white;
    display: flex;
    justify-content: center;
}

#bounceText span {
    display: inline-block;
    animation: bounce 1.6s infinite ease-in-out;
}

#bounceText span:nth-child(1) {
  animation-delay: 0s;
}

#bounceText span:nth-child(2) {
  animation-delay: 0.2s;
}

#bounceText span:nth-child(3) {
  animation-delay: 0.4s;
}

#bounceText span:nth-child(4) {
  animation-delay: 0.6s;
}

#bounceText span:nth-child(5) {
  animation-delay: 0.8s;
}

#bounceText span:nth-child(6) {
  animation-delay: 1s;
}

#bounceText span:nth-child(7) {
  animation-delay: 1.2s;
}

#bounceText span:nth-child(8) {
  animation-delay: 1.4s;
}

#bounceText span:nth-child(9) {
  animation-delay: 1.6s;
}

#bounceText span:nth-child(10) {
  animation-delay: 1.8s;
}

#bounceText span:nth-child(11) {
  animation-delay: 1.8s;
}

#bounceText span:nth-child(12) {
  animation-delay: 2s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

#content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.contentWindow {
    border: 4px outset #e0e0e0;
    display: flex;
    flex-direction: column;
    width: 450px;
    background-color: #c0c0c0;
    padding-bottom: 30px;
}

.heading {
    display: flex;
    flex-direction: row;
    background: linear-gradient(90deg,#000382 0%, #1887cf 100%);
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

h2 {
    margin: 0;
    padding: 0;
    color: white;
    padding: 5px;
    font-size: 1.2em;
}

input {
    margin-right: 3px;
    border-radius: 0;
    font-size: 1.1em;
    padding: 0 7px 2px 7px;
    margin: 5px 3px 5px 0;
    width: 29px;
    background-color: #c2c2c2;
    border: 3px outset;
    border-color: #ececec #9f9f9f #9f9f9f #ececec;
}

input:hover {
    border: 3px outset #828282;
}

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.taskBar {
    background-color: #c0c0c0;
}

.taskBar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.taskBar li {
    display: block;
    float: left;
    padding: 5px;
    margin: 5px 0 5px 0;
    border: 3px solid transparent;
}

.taskBar li:hover {
    border: 3px outset #dfdfdf;
    cursor: pointer;
}

.taskBar li::first-letter {
    text-decoration: underline;
}

.articles {
    background-color: #ffffff;
    border: 3px inset #cdcdcd;
}

article {
    margin: 10px;
    border-bottom: 2px solid #868686;
}

article img {
    width: 425px;
    border: 3px inset #cdcdcd;
}

h3 {
    text-align: center;
}