@import url('https://unpkg.com/7.css/dist/7.css');
body {
  background-color: white;
  color: black;
  font-family: Verdana;
  background: #3c7fb1 url('wp.png') no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
  height: 100vh;
}
.drag {
    position: absolute;
    touch-action: none;
    user-select: none;
}
.window {
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.background {
  background-color: white;
  background: #3c7fb1 url('wp.png') no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
  height: 100vh;
}
.dt-grid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position: absolute;
    top: 20px;
    left: 20px;
    height: calc(100vh - 60px);
    width: auto;
    gap: 10px;
}
.dt-item {
    width: 80px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0px 0px 5px rgba(0, 0, 0, 0.5);
    font-family: "Segoe UI", Tahoma, sans-serif;
    font-size: 11px;
    border: 1px solid transparent;
    transition: background 0.2s, border 0.2s;
}

.dt-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.dt-item img {
    margin-bottom: 4px;
    width: 32px;
    height: 32px;
}