body {
  background: url("clouds2.jpg") fixed;
  background-size: cover;
  margin: 0;
}

a {
  text-decoration: none;
  margin: 5px;
}

a:hover {
  text-decoration: underline;
}

.header {
  margin: 10px;
  font-size: 20px;
  position: fixed;
  width: 500px;
  height: 100vh;
  z-index: 10;
}

.rainbow {
   font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    background: linear-gradient(
      90deg,
      #9c00ff,
      #ff0000,
      #ff8800,
      #ffff00,
      #02be02,
      #0000ff,
      #4f00ff,
      #9c00ff
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 10px;
  transform-origin: left;
  display: inline-block;
  position: relative;
  font-size: 50px;
  transform: skewY(-8deg) scaleY(1.3) scaleX(0.8);
  line-height: 55px;
}

.navigation a {
    margin: 25px;
    color: purple;
  }
  


h2 {
  margin: 5px;
  font-size: 24px;
}
p {
  margin: 5px;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 10px;
}

  #desktop {
        margin: 20px auto;
        position: absolute;
        right: 15px;
        display: flex;
}

.column {
  padding: 5px;
  width: 310px;
}

.box {
  background-color: white;
}

.clear{
  background-color: none;
}

.ipod {
  position: absolute;
  bottom: 0px;
  
}

img {
  margin: 5px;
}

iframe {
  margin: 5px;
}

.title-bar {
    font-family: Trebuchet MS;
    background: linear-gradient(180deg,#0997ff,#0053ee 8%,#0050ee 40%,#06f 88%,#06f 93%,#005bff 95%,#003dd7 96%,#003dd7);
    padding: 3px 5px 3px 3px;
    border-top: 1px solid #0831d9;
    border-left: 1px solid #0831d9;
    border-right: 1px solid #001ea0;
    border-top-left-radius: 8px;
    border-top-right-radius: 7px;
    font-size: 14px;
    text-shadow: 1px 1px #0f1089;
    height: 21px;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    
}

.title-bar-text {
    font-size: 12px;
    color: white;
    padding: 3px 2px 3px 3px;
    display: flex;
    align-items: center;
}

.title-bar-controls {
    display: flex;       
}

.title-bar-controls button {
    padding: 0;
    display: block;
    min-width: 16px;
    min-height: 14px;
    align-items: center;
}

.title-bar-controls button:active {
    padding: 0;
}

.title-bar-controls button:focus {
    outline: none;
}

.title-bar-controls button[aria-label="Minimize"],
    .title-bar-controls .minimize {
        background-image: url("xp/minimizexp.svg");
        background-repeat: no-repeat;
        min-width: 21px;
        min-height: 21px;
        margin-left: 2px;
        background-position: 50%;
        box-shadow: none;
        background-color: #0050ee;
        transition: background .1s;
        border: none;
}

.title-bar-controls button[aria-label="Maximize"],
    .title-bar-controls .maximize {
        background-image: url("xp/maximizexp.svg");
        background-repeat: no-repeat;
        min-width: 21px;
        min-height: 21px;
        margin-left: 2px;
        background-position: 50%;
        box-shadow: none;
        background-color: #0050ee;
        transition: background .1s;
        border: none;
  }

.title-bar-controls button[aria-label="Close"],
    .title-bar-controls .close {
        background-image: url("xp/closexp.svg");
        background-repeat: no-repeat;
        min-width: 21px;
        min-height: 21px;
        margin-left: 2px;
        background-position: 50%;
        box-shadow: none;
        background-color: #0050ee;
        transition: background .1s;
        border: none;
  }

.window-body {
  background-color: white;
}