@font-face {
  font-family: "MSW98UI-Regular";
  src: url("fonts/MSW98UI-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "MSW98UI-Bold";
  src: url("fonts/MSW98UI-Bold.ttf") format("truetype");
  font-weight: bold;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  max-width: 100%;
}
img{
    user-select: none;
}
svg {
  image-rendering: pixelated;
}
body {
  background: #137f7f;
  overflow-x: hidden;
  overflow-y: hidden;
}
[data-window-id],
#modal {
  display: flex;
  flex-direction: column;
  max-width: calc(100vw - 16px);
  max-height: calc(var(--real-vh, 100vh) - var(--taskbar-h, 35px) - 8px);
  min-width: 0;
  overflow: hidden;
}
[data-window-id].is-maximized,
#modal.is-maximized {
  max-width: none;
  max-height: none;
}
[data-window-id] > .window-body,
#modal > .window-body {
  flex: 1 1 auto;
  min-height: 0;
}
.window,
.window * {
  overflow-wrap: anywhere;
}
.window-body {
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  word-break: break-word;
}
.window-body > * {
  max-width: 100%;
}
.window-body img {
  max-width: 100%;
}
.title-bar {
  min-width: 0;
}
.title-bar-text {
  margin-right: 6px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.title-bar-controls {
  align-items: center;
  flex: 0 0 auto;
  gap: 2px;
}
.title-bar-controls button {
  align-items: center;
  background-position: center !important;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
}
.title-bar-controls button[aria-label="Close"],
.title-bar-controls button[aria-label].close {
  margin-left: 0;
}
#taskbar {
  position: absolute;
  height: 35px;
  width: 100%;
  left: 0px;
  bottom: 0px;
  padding: 4px;
  z-index: 999999;
  justify-content: space-between;
  user-select: none;
  display: flex;
  align-items: center;
}

#startBtn {
  display: flex;
  width: 50px;
  height: 27px;
  padding-left: 4px;
  text-align: right;
  font-size: 16px;
  float: left;
  padding: 4px 6px;
  align-items: center;
  justify-content: space-between;
  font-family: "MSW98UI-Regular", sans-serif;
}
#clock {
  float: right;
  width: 60px;
  text-align: center;
  color: black;
  font-size: 16px;
  height: 25px;
}
.start_img {
  height: 100%;
}
.contact {
  height: 100%;
  align-items: center;
  display: flex;
  font-family: "MSW98UI-Regular", sans-serif;
  gap: 10px;
  justify-content: flex-start;
  font-size: 25px;
  min-width: 0;
}
.contact > img {
  flex: 0 1 86px;
  min-width: 44px;
}
.info {
  flex: 1 1 auto;
  min-width: 0;
}
.info a {
  word-break: break-all;
}
.title_img{
    width: 15px; 
    margin-right: 3px;
}
.title-bar-text{
    user-select: none;
}
p{
    font-family: "MSW98UI-Regular", sans-serif;
}
h3, h4{
    font-family: "MSW98UI-Bold", sans-serif;
}
#modal{
    position: absolute;
    z-index: 1000;
    width: min(200px, calc(100vw - 16px));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 15px;
    min-height: 100px;
    height: auto;
}
.modal-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-body button{
    font-size: 14px;
}
.projects{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    align-content: flex-start;
    gap: 10px;
}
.projects a {
    display: flex;
    flex: 1 1 220px;
    max-width: min(100%, 360px);
    min-width: 0;
}
.project_img{
    width: 100%;
    height: auto;
    max-height: 200px;
    border: 1px solid #808080;
    object-fit: cover;
}
.photo {
    align-items: center;
    display: flex;
    justify-content: center;
}
.photo img {
    height: auto !important;
    max-height: 100%;
    object-fit: contain;
}
