body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* background-color: #d7fcff; */
  transition: background-image 0.5s ease;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  background-position: center;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}
body.background0 {
  background-color: black;
}
body.background-one {
  background-image: url("https://s21.ax1x.com/2024/09/21/pAMtwqA.png");
}

body.background-two {
  background-image: url("https://s21.ax1x.com/2024/09/21/pAMtBVI.png");
}
:root {
  --link: var(--bs-link-color, var(--bs-blue, #0d6efd));
}
.slide {
  display: none;
  text-align: center;
  transition: opacity 3s ease;
  width: 90%;
  /* height: 90%; */
  position: relative;
}

.slide2 {
  height: 95%;
}

.slide.active {
  display: block;
  opacity: 1;
}

h1,
h2 {
  margin: 0;
  font-size: 6vw;
  /* Adjusts size dynamically based on viewport */
  color: #0057b7;
}

p {
  /* font-size: 1.6em; */
  color: rgb(30, 30, 30);
  margin: 1.8em 0 0 0;
  font-size: 2.5vw;
}
table + div p {
  margin: 1.6em 0 0 0;
}

.highlight {
  font-weight: bold;
  color: #ff5733;
}

.title {
  font-size: 10vw;
  /* Adjust dynamically */
  color: #333;
  margin-bottom: 0.5em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.content-title {
  font-size: 5vw;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
  position: relative;
}

.content-title:before,
.content-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #333;
  width: 100%;
  left: 0;
}

.content-title:before {
  left: 0;
}

.content {
  font-size: 2vw;
  margin-top: 20px;
  text-align: left;
  line-height: 1.5em;
}

.box {
  width: 450px;
  height: 250px;
  margin: 1em 1em 0 1em;
  border: 2px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6em;
  transition: all 0.5s ease;
}

.box.css {
  background-color: #b3e5fc;
  border: 5px solid #0288d1;
  color: #0288d1;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 80px;
}

.box.plain {
  /* background-color: #f0f0f0; */
  border: 2px dashed #666;
}

.box.js:hover {
  background-color: #ffcc80;
  color: rgb(41, 102, 255);
  transform: scale(1.35);
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("https://images.unsplash.com/photo-1517816428104-1c38703b0884")
    no-repeat center center/cover;
  opacity: 0.2;
}

.flex {
  display: flex;
  flex-direction: row;
}

.mr3 {
  margin-right: 5px;
}

.wid0 {
  width: 35%;
  border-left-style: solid;
  border-left-width: 2px;
  border-left-color: black;
  padding-left: 20px;
  display: flex;
  align-items: s;
}

table.dataintable {
  margin-top: 15px;
  border-collapse: collapse;
  border: 1px solid #aaa;
  width: 100%;
}

div#wrapper {
  margin: 0 auto;
  padding: 0;
  border: 0;
  /* width: 1239px; */
  text-align: left;
  background: transparent url(/ui2017/wrapper.png) top left repeat-y;
}

table.dataintable th {
  font-size: 2.5vw;
  vertical-align: baseline;
  padding: 10px 10px 10px 10px;
  background-color: #0057b7;
  border: 1px solid #0057b7;
  text-align: left;
  color: #fff;
}

table.dataintable td {
  font-size: 2.5vw;
  vertical-align: text-top;
  padding: 9px 9px 9px 9px;
  border: 1.2px solid #aaa;
}

/* tr {
      display: table-row;
      vertical-align: inherit;
      unicode-bidi: isolate;
      border-color: inherit;
    }th {
    display: table-cell;
    vertical-align: inherit;
    font-weight: bold;
    text-align: -internal-center;
    unicode-bidi: isolate;
} */
@keyframes moveToTopLeft {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50vw, -50vh);
    opacity: 0;
  }
}
.moving {
  animation: moveToTopLeft 0.5s forwards;
}
