body {
  background: url('space_tile.png') repeat;
  animation: drift 120s linear infinite;
  color: #fcfcfc;
  font-family: "Courier New", Courier, monospace;
}

@keyframes drift {
    from { background-position: 0 0; }
    to { background-position: 1000px 500px; }
  }

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  }
  
.under-con {
  gap: 225px;
  }

.main-head {
  margin-top: 50px;
  text-align: center; 
  color: #fff;
  letter-spacing: 2px;
  text-shadow:
    0 0 4px #00ccff,
    0 0 8px #0099ff;
}

.sub-head{
  text-align: center;
  }

.bio {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px;
  
  font-size: 20px;
  }
  
.win-btn {
  font-family: "MS Sans Serif", "Microsoft Sans Serif", sans-serif;
  font-size: 13px;
  color: black;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #404040 #404040 #ffffff;
  padding: 4px 12px;
  box-shadow: 1px 1px 0 #000000;
  cursor: pointer;
  min-width: 80px;
}

.win-btn:active {
  border-color: #404040 #ffffff #ffffff #404040;
  box-shadow: none;
  transform: translate(1px, 1px);
}

.win-btn:focus {
  outline: 1px dotted #000;
  outline-offset: -4px;
}

.window {
  width: 500px;
  max-width: calc(100vw - 20px);
  margin: 40px auto;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #404040 #404040 #ffffff;
  color: black;
}

.title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: navy;
  color: white;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
}

.title-buttons {
    display: flex;
    gap: 2px;
  }

.title-buttons div {
    width: 12px;
    height: 12px;
    background: #c0c0c0;
    border: 1px solid;
    border-color: #ffffff #404040 #404040 #ffffff;
  }

.window-content {
    padding: 10px;
  }

  * {
    box-sizing: border-box;
  }
  
  img {
      max-width: 100%;
      height: auto;
    }
    
/* Adjusting for mobile :^) */
@media (max-width: 700px){
    .window {
      width: 100%;
      margin: 10px auto;
    }
  
    .window-content {
      padding: 12px;
    }
  
    .under-con {
      gap: 10px;
      flex-direction: column;
    }
  
    .bio {
      padding: 20px;
      font-size: 16px;
    }
  
    .main-head {
      margin-top: 20px;
      font-size: 1.5rem;
    }
  
    .sub-head {
      font-size: 1rem;
    }
  
    .title-bar {
      font-size: 11px;
    }
  }

