/* font-family: 'Roboto', sans-serif;  */
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/* font-family: 'Amatic SC', cursive;  */
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap");
/* font-family: 'Rajdhani', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap");
/* font-family: 'Cookie', cursive; */
@import url("https://fonts.googleapis.com/css2?family=Cookie&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Aref+Ruqaa:wght@400;700&display=swap");

:root {
  --white: #ffffff;
  --grey: #dfdfdf;
  --text-color-100: #212742;
  --text-color-200: #121212;
  --orange: #ff6d04;
  --red100: rgb(255, 91, 91);
  --red200: rgb(234, 0, 0);
  --green: #b2fcb1;
  --darkgreen: #31b00e;
  --blue: rgb(34, 126, 255);
  --shadow: rgba(0, 0, 0, 0.1);
  --font-rajdhani: "Rajdhani", sans-serif;
  --font-amatic: "Amatic SC", cursive;
  --font-cookie: "Cookie", cursive;
  --font-aref: "Aref Ruqaa", serif;
  --padding100: 7px;
  --padding200: 14px;
  --border100: 6px;
  --border200: 50%;
  --font1: 14px;
  --font2: 15px;
  --font3: 16px;
  --font4: 18px;
  --font5: 20px;
  --font6: 21px;
  --font7: 22px;
  --font8: 23px;
  --font9: 24px;
  --font10: 26px;
  --font11: 28px;
  --font12: 32px;
  --font13: 34px;
  --font14: 38px;
}

.dark-mode {
  --white: #2c2c2c;
  --grey: #121212;
  --text-color-100: #d8d6d6;
  --text-color-200: #ffffff;
}

@font-face {
  font-family: "Rajdhani", sans-serif;
  src: url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

.superscript-text {
  vertical-align: super;
}

.subscript-text {
  vertical-align: sub;
}

dfn[title] {
  position: relative;
}

dfn[title]::after {
  content: attr(title);
  position: absolute;
  display: block;
  background-color: var(--text-color-100);
  color: var(--grey);
  font-size: var(--font3);
  font-weight: 500;
  bottom: 100%;
  white-space: nowrap;
  padding: var(--padding100) var(--padding200);
  border-radius: var(--border100);
  left: 30%;
  transform: scale(0);
  transition: ease-out 250ms;
  font-family: var(--font-rajdhani);
}

dfn.menu-hover[title]::after {
  left: auto;
  right: 30%;
}

dfn[title]:hover::after {
  transform: scale(1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  width: 100%;
  color: var(--text-color-200);
  overflow-x: hidden;
  background-color: var(--grey);
  transition-duration: 250ms;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--black);
}

::selection {
  background: var(--orange);
  color: var(--white);
}

nav {
  display: flex;
  gap: var(--font14);
}

nav span {
  -webkit-user-select: none;
  user-select: none;
}

nav span:hover {
  cursor: pointer;
  color: var(--orange);
}

nav span:active {
  color: var(--red200);
}

.navigation-menu {
  display: none;
  position: fixed;
  right: 40px;
  top: 40px;
  width: 39ch;
  height: fit-content;
  overflow: auto;
  -webkit-user-select: none;
  user-select: none;
}

.navigation-menu-content {
  background-color: var(--grey);
  margin: 15% auto;
  padding: 15px;
  border-radius: 5px;
  width: 80%;
  font-family: var(--font-rajdhani);
  font-weight: 600;
}

.menusidebar,
.settingsbutton {
  display: flex;
  border-radius: 5px;
  flex-direction: column;
  gap: 1em;
}

.menusidebar div,
.settingsbutton div {
  padding: 0.4em;
  font-size: 1.07rem;
  background-color: var(--white);
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
}

.menusidebar div:hover,
.settingsbutton div:hover {
  background-color: var(--green);
  color: var(--darkgreen);
}

.menusidebar div:active,
.settingsbutton div:active {
  background-color: var(--darkgreen);
  color: var(--white);
}

.close-profile,
.closemenu,
.close3,
.close4,
.close5 {
  color: var(--orange);
  float: right;
  font-size: 28px;
  font-weight: bold;
  background-color: var(--white);
  border-radius: 50%;
  padding: 1px 11px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
  margin-left: 3px;
  -webkit-user-select: none;
  user-select: none;
}

.close-profile:hover,
.closemenu:hover,
.close3:hover,
.close4:hover,
.close5:hover,
.close-profile:focus,
.closemenu:focus,
.close3:focus,
.close4:focus,
.close5:focus {
  background-color: var(--orange);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.close-profile:active,
.closemenu:active,
.close3:active,
.close4:active {
  background-color: var(--red200);
}

aside {
  display: flex;
  justify-content: space-around;
  margin-top: 1.6em;
}

.sidepanel {
  width: 36ch;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.mainpanel {
  border-radius: var(--border100);
  width: 125ch;
  background-color: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
}

.biography {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
  border-radius: var(--border100);
  background-color: var(--white);
}

.biopic img {
  position: relative;
  left: 3em;
  top: 2em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
  height: 400px;
  border-radius: var(--border100);
}

#biopic1:hover {
  content: url(/Images/girl-2022.jpg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  left: 3em;
  top: 2em;
  height: 400px;
  border-radius: var(--border100);
  cursor: crosshair;
}

#biopic2:hover {
  content: url(/Images/IMG-20221003-WA0021.jpg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  left: 3em;
  top: 2em;
  height: 400px;
  border-radius: var(--border100);
  cursor: crosshair;
}

#biopic3:hover {
  content: url(/Images/Snapchat-927111333.jpg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  left: 3em;
  top: 2em;
  height: 400px;
  border-radius: var(--border100);
  cursor: crosshair;
}

.biotext {
  padding: var(--padding100) var(--padding200);
  position: relative;
  margin-top: 3em;
  font-family: var(--font-aref);
}

.biography_name {
  font-family: var(--font-cookie);
  text-align: center;
  font-size: var(--font12);
  font-weight: 500;
}

.biography_describe {
  font-size: var(--font4);
  padding-top: 0.8em;
}

.biography_describe::first-letter {
  padding: var(--padding100) var(--padding200);
  margin: 12px;
  margin-bottom: 0px;
  border: 1px solid var(--darkgreen);
  border-radius: var(--border100);
  color: var(--darkgreen);
  background-color: var(--green);
  font-size: var(--font14);
  font-family: var(--font-rajdhani);
  font-weight: 600;
  text-align: justify;
  float: left;
}

#version {
  color: var(--white);
  font-family: var(--font-rajdhani);
  font-size: var(--font3);
  font-weight: 500;
  padding: var(--padding100) var(--padding200);
  border: solid 2px var(--orange);
  background-image: url(/Images/background-pic-light.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============ heading ============ */
header {
  margin: 1em;
  border-radius: var(--border100);
  padding: 1em;
  background-color: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
}

header section {
  display: flex;
  justify-content: space-between;
}

.userid {
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-aref);
}

.userid:hover:after {
  content: "Instagram ID - @snehaaaa_d";
  position: relative;
  top: 1em;
  font-size: 0.7em;
  border-radius: var(--border100);
  color: var(--white);
  background-color: var(--text-color-100);
  font-family: var(--font-rajdhani);
  color: var(--grey);
  font-size: var(--font3);
  font-weight: 500;
  padding: var(--padding100) var(--padding200);
  font-style: italic;
}

.profile {
  display: flex;
  height: 21em;
  width: 100%;
}

#snehaaaa_d:hover {
  cursor: zoom-in;
}

#snehaaaa_d:hover:after {
  content: url(/Images/Sneha-profile-pic-jpg.jpg);
  position: absolute;
  top: 2em;
  left: 14rem;
  z-index: 1;
}

.profile-pic-insta picture {
  height: 20em;
}

.profile-pic-insta picture img {
  height: 20em;
  padding-left: 2em;
  -webkit-clip-path: circle(29.3% at 60% 33%);
  clip-path: circle(29.3% at 60% 33%);
}

.profile-pic-insta h1 {
  font-family: var(--font-amatic);
  font-size: var(--font12);
  position: absolute;
  top: 8.2em;
  left: 2.5em;
}

.bioprofile {
  position: absolute;
  top: 19.2em;
  font-weight: 500;
  left: 4.5em;
  font-family: var(--font-aref);
  font-size: var(--font3);
}

.followerstable {
  padding: 3em 0em 0em 8em;
  display: flex;
  gap: 8em;
  font-family: var(--font-rajdhani);
}

.number {
  font-weight: 700;
  font-size: var(--font8);
  text-align: center;
}

.number:hover {
  transition-duration: 100ms;
  transform: scale(1.2);
  color: var(--red100)
}

.titleprofile {
  font-weight: 600;
  font-size: var(--font4);
}

.blocktitle {
  font-family: var(--font-rajdhani);
  background-image: linear-gradient(rgb(247, 29, 247), rgb(0, 174, 255));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin: var(--font14);
  border-left: solid 4px var(--orange);
  padding: var(--padding100) var(--padding200);
  font-size: var(--font7);
}

/* ============ Balloon ============ */
#balloon {
  line-height: var(--font14);
  font-size: var(--font6);
  padding-left: 60%;
  position: absolute;
  -webkit-animation: linear infinite runup 20s;
  animation: linear infinite runup 20s;
}

@-webkit-keyframes runup {
  0% {
    bottom: 0;
  }

  50% {
    bottom: 100%;
  }

  50.001% {
    bottom: 0;
  }

  100% {
    bottom: 100%;
  }
}

/* ============= Name =============*/
.fullName {
  color: var(--orange);
  font-size: var(--font14);
  border: solid 3px #5a8ca7;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  padding: var(--padding100) var(--padding200);
  margin: 1em;
  border-radius: var(--border100);
  background-color: aliceblue;
  transition-duration: 200ms;
  font-family: "Fredericka the Great", cursive;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
}

.fullName:hover {
  transform: scale(1.13);
  border-color: var(--darkgreen);
}

.fullName>span:nth-child(1):hover {
  color: #5a8ca7;
}

.fullName>span:nth-child(2):hover {
  color: rgb(250, 35, 254);
}

/* ============= Warning Message =============*/
#warning {
  font-size: var(--font10);
  padding-left: var(--padding200);
  font-family: var(--font-rajdhani);
  color: var(--orange);
  cursor: no-drop;
  font-weight: 600;
  position: absolute;
  -webkit-animation: colorchangewarning 3s infinite alternate;
  animation: colorchangewarning 3s infinite alternate;
}

@-webkit-keyframes colorchangewarning {
  0% {
    color: rgb(255, 11, 11);
  }

  51% {
    color: #ffd904;
  }

  100% {
    color: rgb(255, 0, 0);
  }
}

.caution {
  border-left: solid 8px var(--orange);
  background-color: rgb(255, 202, 202);
  margin: 2em;
  margin-top: 6rem;
  transition-duration: 100ms;
  padding: 1em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}

.caution:hover {
  transform: scale(1.03);
}

/* ============= highly beautiful ============= */
#highlybeautiful {
  font-size: var(--font4);
  -webkit-animation: slideinhighlybeautiful 1 8s;
  animation: slideinhighlybeautiful 1 8s;
  animation-delay: 2s;
  padding-left: var(--padding100);
  padding-top: 37px;
}

#highlybeautiful:hover {
  color: rgb(255, 0, 0);
}

@-webkit-keyframes slideinhighlybeautiful {
  from {
    margin-left: 90%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}

@-moz-keyframes slideinhighlybeautiful {
  from {
    margin-left: 90%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}

@-o-keyframes slideinhighlybeautiful {
  from {
    margin-left: 90%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}

@keyframes slideinhighlybeautiful {
  from {
    margin-left: 100%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}

/* ============= You became boro ============= */
.fewwordstitle {
  color: var(--text-color-100);
  font-size: var(--font10);
  font-family: var(--font-aref);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

#fewwords {
  background-image: url(/Images/mesh-light.png);
  font-family: var(--font-rajdhani);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  word-spacing: 4px;
  background-position: 20%;
  background-size: cover;
  margin: 4em auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 8px 16px;
}

#fewwords p::before {
  content: "💕";
}

#fewwords p {
  word-spacing: 2px;
  cursor: cell;
  font-size: var(--font4);
  line-height: var(--font12);
  font-weight: 500;
  color: #804122;
  text-align: justify;
}

#first-slide {
  display: block;
}

#second-slide {
  display: none;
}

.slide-nav {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  gap: 10px;
  -webkit-user-select: none;
  user-select: none;
}

.slide-nav span {
  padding: var(--padding100);
  color: var(--text-color-200);
  background-color: var(--grey);
  border: solid 0.8px var(--text-color-100);
  border-radius: var(--border100);
}

#pevious-1 {
  opacity: 0.4;
}

#next-2 {
  opacity: 0.4;
}

/* ==================== Click me if you love ME ==================== */
.loveMEbutton {
  color: var(--orange);
  background-color: var(--white);
  font-size: var(--font5);
  font-weight: 600;
  border: solid 2px var(--orange);
  border-radius: 7px;
  position: relative;
  left: 45%;
  font-family: "Rajdhani", sans-serif;
  transition: all 0.5s;
  padding: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}

.loveMEbutton .loveMEbuttonhover {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.loveMEbutton .loveMEbuttonhover:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.loveMEbutton .loveMEbuttonhover:hover {
  color: var(--white);
  background-color: var(--orange);
  border-color: var(--green);
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
  padding-right: 25px;
}

.loveMEbutton:hover .loveMEbuttonhover:after {
  opacity: 1;
  right: 0;
}

#snackbar {
  font-family: var(--font-aref);
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: var(--text-color-100);
  color: var(--white);
  text-align: center;
  border-radius: 2px;
  padding: 10px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

.modal, .modal3, .modal5 {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content, .modal-content-3, .modal-content-5 {
  background-color: var(--grey);
  margin: 15% auto;
  padding: 20px;
  border: 1px solid var(--orange);
  width: 80%;
}

.modalhead {
  background-image: url(/Images/background-pic-light.webp);
  background-size: cover;
  background-position: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-rajdhani);
  padding: 1em;
  text-align: center;
}

.modaltext {
  background-color: var(--white);
  font-size: var(--font10);
  padding: 2ch;
  word-spacing: 1.1ch;
  letter-spacing: 0.1ch;
  margin: 2em auto;
  border-radius: 5px;
  font-family: var(--font-cookie);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}

.modaltext p {
  margin: 25px 0px;
}

.modaltext p:first-child {
  margin: 0px 0px 0px 25px;
}

.modaltext>p::first-letter {
  font-size: var(--font13);
}


.modaltext::before {
  content: '"';
  font-size: 4rem;
  font-weight: 700;
  font-family: "Cookie", cursive;
  line-height: 1.2rem;
}

.modal-content img {
  margin: 1em;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
}

.modal-content img:nth-child(2n + 3) {
  height: 15em;
}

.modal-content img:nth-child(4) {
  height: 18em;
}

.modal-content img:nth-child(4n + 2) {
  height: 12em;
}

.modal-content img:nth-child(6n + 1) {
  height: 9em;
}

/* __________________________________________________________________________________________________________*/
/* ==================== 19-1 ==================== */
.trickhead {
  background-color: var(--green);
  border: solid 4px var(--white);
  border-radius: 4px;
  width: 76%;
  margin: 2em auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}

.trick {
  background-image: url(/Images/mesh.png);
  background-position: center;
  background-size: cover;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: solid 4px var(--white);
  border-radius: 7px;
  width: 80%;
  margin: 3em auto;
  padding: 1em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}

.input-right,
.input-wrong,
.input-null {
  font-weight: 600;
  font-size: var(--font7);
  font-family: var(--font-rajdhani);
  padding: var(--padding100) var(--padding200);
  border-radius: var(--border100);
  margin: var(--padding200);
  width: -moz-fit-content;
  width: fit-content;
}

.input-right {
  color: var(--darkgreen);
  border: solid 3px var(--darkgreen);
}

.input-wrong {
  color: var(--red200);
  border: solid 3px var(--red200);
}

.input-null {
  color: var(--blue);
  border: solid 3px var(--blue);
}

/* __________________________________________________________________________________________________________*/

/*====================Attribute Table====================*/
.tg {
  margin: 30px auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}

.tg {
  border-collapse: collapse;
  border-spacing: 0;
}

.tg td {
  border: solid 1px var(--white);
  font-family: var(--font-aref);
  font-size: var(--font1);
  overflow: hidden;
  padding: 10px 5px;
  word-break: normal;
  vertical-align: middle;
}

.tg th {
  border: solid 1px var(--white);
  font-family: var(--font-rajdhani);
  font-size: var(--font3);
  font-weight: normal;
  overflow: hidden;
  padding: 10px 5px;
  word-break: normal;
  vertical-align: middle;
}

.tg .tg-hic2 {
  background-color: #ffa12f;
  border-color: #ffffff;
  color: #ffffff;
  font-size: var(--font3);
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}

.tg .tg-hic2:hover {
  background-color: #ff6767;
  color: aliceblue;
  cursor: context-menu;
  vertical-align: middle;
}

.tg .tg-nsnw {
  background-color: #f48dff;
  color: #ff008c;
  font-size: var(--font4);
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

.tg .tg-3u94 {
  background-color: #84fff9;
  border-color: #ffffff;
  color: #00b7ff;
  font-size: var(--font3);
  font-style: italic;
  text-align: center;
  vertical-align: top;
}

.tg .tg-3u94:hover {
  background-color: #f1a1a1;
  color: #ff0000;
  cursor: context-menu;
}

.tg .tg-xp1s {
  background-color: #ff86c0;
  border-color: #ffffff;
  color: #ffffff;
  text-align: center;
  vertical-align: top;
}

.tg .tg-xp1s:hover {
  background-color: #f38181;
  color: #ff0000;
  cursor: context-menu;
}

.shayari {
  font-family: "Rajdhani", sans-serif;
  background-color: var(--white);
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  margin: 4em auto;
  font-size: var(--font4);
  line-height: var(--font10);
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}

/*====================age is twice====================*/
.twice {
  margin: 2em;
  color: var(--darkgreen);
  font-size: var(--font6);
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
}

legend a {
  font-family: "Rajdhani", sans-serif;
  font-size: var(--font6);
  font-weight: 600;
  color: var(--orange);
}

/* ==================== Random Words ==================== */
.lorem {
  text-align: justify;
  font-size: var(--font4);
  padding: 0.2em 1em;
  background-color: var(--white);
  color: var(--text-color-100);
  border: solid var(--white) 2px;
  border-radius: 6px;
  -webkit-user-select: none;
  user-select: none;
  transition-duration: 400ms;
  margin: 4em 2em 4em 2em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}

.lorem:hover {
  color: var(--text-color-200);
  cursor: not-allowed;
  transform: scale(1.03);
}

.comment {
    background-image: linear-gradient(45deg, rgb(250, 32, 32), rgb(225, 255, 0));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 40px;
  border-radius: var(--border100);
  padding: 10PX 15PX;
  transition-duration: 250ms;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}

.comment img {
  height: 250px;
}

.met {
  font-family: var(--font-cookie);
  font-size: var(--font11);
}

.comment:hover {
  transform: none;
  border: solid 2.5px var(--orange);
}

progress[value] {
  width: 250px;
  height: 40px;
}

.final {
    background-image: linear-gradient(45deg, rgb(250, 32, 32), rgb(255, 217, 0));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  border-radius: 8px;
  margin: 40px auto 0px auto;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}

.wish {
  font-size: var(--font4);
}

/* ==================== Back to Top ==================== */
#moveTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 1;
  border: solid 1px;
  border-radius: var(--border200);
  background-color: var(--grey);
  color: var(--text-color-100);
  cursor: pointer;
  transition-duration: 450ms;
  opacity: 60%;
  padding: 10px 12px;
}

#moveTop:hover {
  opacity: 100%;
  transform: rotate(360deg);
}

/* ==================== footer Happy Birthday ==================== */
.footer {
  text-align: center;
  position: fixed;
  font-family: var(--font-amatic);
  bottom: 7px;
  left: 20px;
  z-index: 1;
  background-color: rgb(107, 107, 107, 0.5);
  color: var(--orange);
  font-size: var(--font12);
  border: solid 2px;
  border-radius: var(--border100);
  transition-duration: 320ms;
  padding: 3px 5px;
}

.footer:hover {
  color: var(--orange);
  cursor: cell;
  transform: scale(1.03);
  background-color: var(--grey);
}

.blue {
  text-decoration: underline 2.5px var(--blue);
  text-underline-offset: 2.5px;
}

.red {
  text-decoration: underline 2.5px var(--orange);
  text-underline-offset: 2.5px;
}

.blue:hover {
  color: var(--blue);
}

.red:hover {
  color: var(--orange);
}

/* ================================================================================================================================== */