* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'dogica';
  src: url('/asset/dogica.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.footer-text, .footer-link {
  font-family: 'dogica', sans-serif;
}

body {
  background-image: url("/image/grid.png");
  background-size: auto;
  background-repeat: repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'dogica', sans-serif;
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.error-container {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  width: 500px;
  height: 400px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 0 8px rgba(240, 201, 224, 0.5);
  border: 2px solid #c3d2e3;
  display: flex;
  flex-direction: column;
}

.taskbar {
  width: 100%;
  height: auto;
  display: block;
}

.error-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.error-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-text {
  text-align: center;
  font-size: 12px;
  max-width: 500px;
  margin: 10px auto;
  margin-top: 15px;
}

.footer-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-link {
  color: #000;
  text-decoration: none;
  font-size: 12px;
}

.footer-link:hover {
  color: #c3d2e3;
}

@media screen and (max-width: 720px) {
  .footer-line {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

.notif.draggable {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: move;
}