* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.main {
  display: flex;
  flex: 1;
  width: 100%;
  height: 100%;
  flex-direction: column;
  background: linear-gradient(to right,
      #5d59af,
      #a072be,
      #be81b6,
      #e390c8,
      #e390c8,
      #be81b6,
      #a072be,
      #5d59af);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 10px;
  font-size: 24px;
  background-color: #ffffff3a;
  backdrop-filter: blur(20px);
}

.pageTitle {
  padding: 0 20px;
  margin: 0;
  color: #fff;
  text-shadow: #fff 0px 0px 4px, #fff 0px 0px 5px, #ff2d95 0px 0px 30px,
    #ff2d95 0px 0px 40px, #ff2d95 0px 0px 50px, #ff2d95 0px 0px 75px,
    2px 2px 2px rgba(22, 40, 206, 0);
}

.pageTitle:hover {
  text-shadow: #fff 0px 0px 4px, #fff 0px 0px 15px, #ff2d95 0px 0px 30px,
    #ff2d95 0px 0px 40px, #ff2d95 0px 0px 50px, #ff2d95 0px 0px 75px,
    2px 2px 2px rgba(22, 40, 206, 0);
  transition: all 0.05s ease;
}


.header>i {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 80px;
  height: 80px;
}

.main__section {
  display: flex;
  flex: 1;
  backdrop-filter: blur(20px);
  background-color: #ffffff3a;
}

/*  Side bar */
.sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  padding: 20px;

}

.sidebar__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*  Content section */
.content {
  display: flex;
  justify-content: start;
  flex: 1;
  margin: 10px 0 0 10px;
  padding: 25px;
  border-top-left-radius: 25px;
  background-color: #5d59af65;
  backdrop-filter: blur(20px);
  -webkit-box-shadow: -4px -4px 10px 4px rgba(227, 144, 200, 0.25);
  box-shadow: -4px -4px 10px 4px rgba(227, 144, 200, 0.25);
}

/* DATA JSON */
.data-container {
  display: flex;
  justify-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 50px 0 0 50px;
  max-width: 68vw;
  max-height: 74vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.data-item {
  position: relative;
  display: flex;
  width: 360px;
  height: 200px;
  border-radius: 25px;
  overflow: hidden;
}

.iframe-container {
  filter: blur(1px);
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.iframe-container:hover {
  filter: blur(0);
  scale: 1.02;

}

iframe {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  width: 360px;
  height: 240px;
  pointer-events: none;
  overflow: hidden;
  border: none;
}


.data-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 40px;
  padding: 10px 40px;
  left: 0;
  bottom: 0;
  background-color: #5d59afab;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;

}

.data-title {
  font-weight: bold;
}

.data-title {
  color: #fff;
  font-size: 12pt;
}

.data-description {
  color: #ffffff;
}

.data-description>p {
  font-size: 10pt;
}

/* Scroll bar */
/* Webkit-based browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #e390c8;
}

::-webkit-scrollbar-thumb {
  background-color: #ffffff65;
}


/* Global */
/* ICON SIZE */
i {
  color: #fff;
  font-size: 32px;
}

i:hover {
  text-shadow: #fff 0px 0px 4px, #fff 0px 0px 15px, #ff2d95 0px 0px 30px,
    #ff2d95 0px 0px 40px, #ff2d95 0px 0px 50px, #ff2d95 0px 0px 75px,
    2px 2px 2px rgba(22, 40, 206, 0);
  transition: all 0.05s ease;
}