@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@900&family=Raleway:ital,wght@0,800;1,300&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Kanit&display=swap");

body {
  margin: 0;
  color: #000000;
  background-color: #fff;
  background-attachment: fixed;
  background-size: cover;
  font-family: "Orbitron", sans-serif;
  /* user-select: none; */
  /* add user select at full compeletion */
}

/* text select color begin */
::selection {
  color: rgb(255, 0, 0);
  background: rgb(255, 255, 0);
}

/* text select color end */

/* scroll begin */
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: red;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

/* scroll bar end */

/* back-to-top btn */
.back-to-top-btn {
  display: none;
  position: fixed;
  width: 90px;
  height: 90px;
  bottom: 35px;
  right: 40px;
  z-index: 99;
  background: url(./top.png);
  background-position: center;
  background-size: contain;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}

.show {
  display: block;
}

/* back-to-top btn */

p {
  font-family: "Kanit", sans-serif;
}

* {
  box-sizing: border-box;
}

/* navbar begin */
* {
  box-sizing: border-box;
}

.title {
  font-size: 6em;
  margin: 0;
  color: black;
}

@media screen and (max-width: 480px) {
  .title {
    font-size: 5em;
    text-align: center;
  }
}

.sub-title {
  text-align: center;
  width: 80%;
}

.qr-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3em;
  font-weight: lighter; 
  text-align: center;
  margin: 0;
  padding: 55px 0px 0px 0px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px -2px 4px, rgba(0, 0, 0, 0.3) 0px -7px 13px -3px, rgba(0, 0, 0, 0.2) 0px 3px 0px inset;
}

.nav {
  height: 50px;
  width: 100%;
  position: relative;
  padding-right: 260px;
  padding-left: 260px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

@media screen and (max-width: 480px) {
  .nav {
    padding: 0;
  }
}

.nav > .nav-header {
  display: inline;
  color: #000;
}

.nav-title::before {
  content: "Satishh";
  padding-left: 10px;
  color: #000;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: #000;
  padding: 10px 10px 10px 10px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 18px;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #000;
}

.nav > .nav-links > a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #333;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }

  .nav > .nav-links > a {
    display: block;
    width: 100%;
  }
}

/* navbar end */

/* 3d cube begin */

.spinner-1 {
  width: 400px;
  height: 400px;
  animation: spinner 12s infinite ease;
  transform-style: preserve-3d;
}

.spinner-1 > div {
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  position: absolute;
  width: 100%;
  border: 2px solid #000000;
}

@media screen and (max-width: 480px) {
  .spinner-1 > div {
    width: 70%; /* Set width to 90% for phone mode view */
    height: 70%; /* Set height to auto for phone mode view */
  }
}

.spinner-1 div:nth-of-type(1) {
  transform: translateZ(-202px) rotateY(180deg);
  background-image: url(./giphy.gif);
  border: 2px solid rgb(0, 0, 0);
}

@media screen and (max-width: 480px) {
  .spinner-1 div:nth-of-type(1) {
    transform: translateZ(-140px);
  }
}

.spinner-1 div:nth-of-type(2) {
  transform: rotateY(-270deg) translateX(50%);
  transform-origin: top right;
  background-image: url(./giphy.gif);
  border: 2px solid rgb(0, 0, 0);
}

.spinner-1 div:nth-of-type(3) {
  transform: rotateY(270deg) translateX(-50%);
  transform-origin: center left;
  background-image: url(./giphy.gif);
  border: 2px solid rgb(0, 0, 0);
}

.spinner-1 div:nth-of-type(4) {
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: top center;
  background-image: url(./giphy.gif);
  border: 2px solid rgb(0, 0, 0);
}

.spinner-1 div:nth-of-type(5) {
  transform: rotateX(-90deg) translateY(50%);
  transform-origin: bottom center;
  background-image: url(./giphy.gif);
  border: 2px solid rgb(0, 0, 0);
}

.spinner-1 div:nth-of-type(6) {
  transform: translateZ(202px);
  background-image: url(./giphy.gif);
  border: 2px solid rgb(0, 0, 0);
}

@media screen and (max-width: 480px) {
  .spinner-1 div:nth-of-type(6) {
    transform: translateZ(140px);
  }
}

@keyframes spinner {
  0% {
    transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
  }

  50% {
    transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
  }

  100% {
    transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
  }
}

/* 3d cube end */

/* link begin */
.block-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 5px;
  background: #ffcc01;
}

.link-btn {
  text-decoration: none;
  padding: 11px 45px;
  font-size: initial;
  border-radius: 30px;
  font-weight: 700;
  background: #ffffff;
  box-shadow: rgb(0 0 0 / 40%) 0px 2px 4px, rgb(0 0 0 / 30%) 0px 7px 13px -3px,
    rgb(0 0 0 / 20%) 0px -3px 0px inset;
}

.link-btn:hover {
  box-shadow: rgb(255, 0, 0) 0px 1px 4px, rgb(255, 220, 37) 0px 0px 0px 3px;
}

/* link end */

.block-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .block-1 {
    flex-direction: column;
  }
}

.menu-btn {
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: x-large;
}

/* link section begin */
#about {
  padding: 120px;
  min-height: 85vh;
  background-color: #ffcc01;
}

@media screen and (max-width: 480px) {
  #about {
    padding: 30px;
    display: flex;
    background-color: #ffcc01;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

/* link section end */

#intro {
  width: 100%;
  min-height: 100vh;
}

.txt-big {
  font-family: "Orbitron", sans-serif;
  box-shadow: 2px 2px;
  text-shadow: 4px 2px 0px #ffffff;
  margin-bottom: 0%;
  padding-top: 378px;
  margin-top: 0%;
  font-size: 100px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 5px;
  z-index: 1;
  margin-left: 30px;
}

@media screen and (max-width: 480px) {
  .txt-big {
    box-shadow: none;
    letter-spacing: 0;
    margin-left: 0;
    font-size: 6em;
  }
}

.txt-medium {
  font-family: "Orbitron", sans-serif;
  font-size: 3em;
  color: #000000;
  text-shadow: 3px -1px 0px #ffffff;
  opacity: 40;
  margin: 0%;
  margin-left: 30px;
}

#txt-small {
  letter-spacing: 0.015rem;
}

.small-pic {
  margin-left: 30px;
  margin-top: 10px;
  background: #ffcc0126;
}

.sml-pic-1{
  background: url(./py-.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 125px;
  width: 125px;
  border: none;
}
.sml-pic-2{
  background: url(./android-std.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 125px;
  width: 125px;
  border: none;
}
.sml-pic-3{
  background: url(./bootstrap.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 125px;
  width: 125px;
  border: none;
}
 

.sticky {
  top: 324px;
  float: right;
  margin-right: 10px;
  writing-mode: vertical-rl;
  font-weight: bolder;
  font-size: xx-large;
  writing-mode: vertical-rl;
  position: sticky;
  text-shadow: -1px 0px 10px white;
  position: -webkit-sticky;
}

@media screen and (max-width: 480px) {
  .sticky {
    margin: 0;
    font-size: larger;
  }
}

.sticky-2 {
  margin: 30px;
  font-size: x-large;
  writing-mode: vertical-rl;
  font-weight: bolder;
  font-family: "Orbitron", sans-serif;
}

@media screen and (max-width: 480px) {
  .sticky-2 {
    margin: 0;
  }
}

/* 3d object begin */
.block-3d {
  min-height: 100vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.shape-1 {
  display: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  padding: 0;
}

.shape-bg {
  width: 100%;
  min-height: 100vh;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-3 {
  margin: 5px;
  text-align: center;
  padding-left: 75px;
  padding-right: 75px;
  background-image: radial-gradient(#000000 2px, transparent 2px),
    radial-gradient(#000000 2px, rgb(255, 255, 255) 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

@media screen and (max-width: 480px) {
  .block-3 {
    padding: 0;
  }
}

.block-4 {
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
  text-shadow: 2px 2px 2px #85815d;
  flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  .block-4 {
    flex-direction: column;
  }
}

/* animation begin */
.cube-1 {
  width: 60px;
  height: 60px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(76deg) rotateY(359deg) rotateZ(45deg);
  animation: box 7s infinite;
}

@keyframes box {
  0% {
    transform: rotateX(25deg) rotateY(298deg) rotateZ(58deg);
  }
  100% {
    transform: rotateX(292deg) rotateY(18deg) rotateZ(65deg);
  }
}

.face {
  width: 67px;
  height: 100px;
  position: absolute;
  border: 1px solid #ff0000;
  box-sizing: border-box;
  border-radius: 4px;
  background: linear-gradient(45deg, #ff0000, #ffcc00);
  animation: color 7s infinite;
}

@keyframes color {
  0% {
    border: 1px solid #ff8282;
    background: linear-gradient(45deg, #ff0000, #ffcc00);
  }

  100% {
    border: 1px solid #ff8282;
    background: linear-gradient(45deg, #ff0000, #ffffff);
    width: 67px;
    height: 100px;
    border-radius: 50%;
  }
}

.on {
  transform: rotateY(328deg) translateX(75px);
}

.two {
  transform: rotateY(318deg) translateX(75px);
}

.three {
  transform: rotateY(308deg) translateX(75px);
}

.four {
  transform: rotateY(298deg) translateX(75px);
}

.five {
  transform: rotateY(288deg) translateX(75px);
}

.six {
  transform: rotateY(278deg) translateX(75px);
}
.seven {
  transform: rotateY(268deg) translateX(75px);
}
.eight {
  transform: rotateY(258deg) translateX(75px);
}
.nine {
  transform: rotateY(248deg) translateX(75px);
}
.ten {
  transform: rotateY(238deg) translateX(75px);
}
.one-1 {
  transform: rotateY(228deg) translateX(75px);
}
.two-1 {
  transform: rotateY(218deg) translateX(75px);
}
.three-1 {
  transform: rotateY(208deg) translateX(75px);
}
.four-1 {
  transform: rotateY(198deg) translateX(75px);
}

.five-1 {
  transform: rotateY(188deg) translateX(75px);
}

.six-1 {
  transform: rotateY(178deg) translateX(75px);
}
.seven-1 {
  transform: rotateY(168deg) translateX(75px);
}
.eight-1 {
  transform: rotateY(158deg) translateX(75px);
}
.nine-1 {
  transform: rotateY(148deg) translateX(75px);
}
.ten-1 {
  transform: rotateY(138deg) translateX(75px);
}
.one-2 {
  transform: rotateY(128deg) translateX(75px);
}
.two-2 {
  transform: rotateY(118deg) translateX(75px);
}
.three-2 {
  transform: rotateY(108deg) translateX(75px);
}
.four-2 {
  transform: rotateY(98deg) translateX(75px);
}

.five-2 {
  transform: rotateY(88deg) translateX(75px);
}

.six-2 {
  transform: rotateY(78deg) translateX(75px);
}
.seven-2 {
  transform: rotateY(68deg) translateX(75px);
}
.eight-2 {
  transform: rotateY(58deg) translateX(75px);
}
.nine-2 {
  transform: rotateY(48deg) translateX(75px);
}
.ten-2 {
  transform: rotateY(38deg) translateX(75px);
}
.one-3 {
  transform: rotateY(28deg) translateX(75px);
}
.two-3 {
  transform: rotateY(18deg) translateX(75px);
}
.three-3 {
  transform: rotateY(8deg) translateX(75px);
}
.four-3 {
  transform: rotateY(358deg) translateX(75px);
}

.five-3 {
  transform: rotateY(348deg) translateX(75px);
}
.six-3 {
  transform: rotateY(338deg) translateX(75px);
}
/* animation end */

/* block-1 begin */
.block-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.block-1 a {
  background: #ffcc01;
}

/* block-1 end */

/* block-5 begin end */

.portfolio-item {
  transition: all 1s;
  padding: 3%;
}

#one {
  background-image: url("./proj-scroll.png");
  transition: all 100s cubic-bezier(0, 0, 0.99, 1.01);
}

.portfolio-box {
  background-position: 50% 0;
  background-size: 100% auto;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  min-height: 53vh;
  width: 53vw;
  border: 2px solid black;
}

@media screen and (max-width: 980px) {
  .portfolio-box {
    min-height: 45vh;
  }
}

@media screen and (max-width: 780px) {
  .portfolio-box {
    min-height: 30vh;
    width: 90vw;
  }
}

.portfolio-box:hover {
  cursor: pointer;
  animation-duration: 70s;
  animation-name: autoscroll;
  animation-timing-function: ease-out;
}

@keyframes autoscroll {
  0% {
    background-position: 50% 0;
  }

  50% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 50% 0%;
  }
}

/* block-5 project end */

/* timeline begin */
.timeline-1 {
  display: flex;
  padding-left: 40px;
  padding-right: 40px;
  flex-wrap: wrap;
  flex-direction: column;
}

/* timeline end */
/* block-6 begin */
.block-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  flex-wrap: wrap;
}

.content-1 {
  width: 60%;
  margin: 10px 0px 25px 0px;
}
@media screen and (max-width: 480px) {
  .content-1 {
    width: auto;
  }
}

.content-1 .lang-btn {
  width: 80px;
  height: 80px;
  margin-left: 0;
  box-shadow: rgb(0 0 0 / 40%) 3px 3px 0px, rgb(0 0 0 / 30%) 0px 7px 13px -3px,
    rgb(0 0 0 / 20%) 0px -3px 0px inset;
}

.cgpa {
  display: flex;
  gap: 40px;
  font-family: sans-serif;
}

.arrow-parallel {
  min-height: 90vh;
  width: 52vh;
  background: #ffcc01;
  clip-path: polygon(0% 0%, 51.2% 0%, 100% 50%, 51.2% 100%, 0% 100%, 51.2% 50%);
  background-image: radial-gradient(#000000 2px, transparent 2px),
    radial-gradient(#000000 2px, transparent 2px);
  background-size: 40px 40px;
}

/* block-6 end */



/* lang-btn begin */
.lang-btn {
  width: 90px;
  height: 90px;
  border-radius: 4px;
  box-shadow: rgb(0 0 0 / 40%) -6px 7px 0px, rgb(0 0 0 / 30%) 0px 7px 13px -3px,
    rgb(0 0 0 / 20%) 0px -3px 0px inset;
  margin: 10px;
  background: snow;
}

@media screen and (max-width: 480px) {
  .lang-btn {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .lang-btn > img {
    width: 30px;
    height: 30px;
  }
}

.lang-btn:hover {
  transform: scale(1.2);
}

/* lang-btn end */

.profile {
  height: 575px;
  width: 432px;
  background-image: url(./profile.jpg);
  background-repeat: no-repeat;
  background-position: center;
  float: right;
  box-shadow: 4px 4px 2px black;
}

.proj-pic {
  height: 560px;
  width: 560px;
  float: right;
  border: 2px solid #ffcc01;
  background: url(./ai.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0px 0px 5px 0px;
}

/* box - animation begin */
.box-2 {
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: #302322;
  overflow: hidden;
  border-radius: 10px;
}

.box-2 h2 {
  font-size: 9em;
  color: white;
  position: relative;
  z-index: 10;
}

.box-2::before {
  content: "";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 1520px;
  background-image: linear-gradient(rgb(255, 0, 0), rgb(214, 21, 21));
  animation: anime;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.box-2::after {
  content: "";
  position: absolute;
  inset: 5px;
  background-image: linear-gradient(45deg, #000000, red);
  border-radius: 10px;
}

@keyframes anime {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* box animation end */

.hidden {
  visibility: hidden;
}

.container {
  display: flex;
  justify-content: space-evenly;
  background-color: #514a49;
}

/* project collapsable begin */
.project {
  padding: 120px;
  color: rgb(0, 0, 0);
  background-color: #ffcc01;
}

@media screen and (max-width: 480px) {
  .project {
    padding: 10px;
  }
}

.collapsible {
  background: #ffffff;
  color: rgb(0, 0, 0);
  cursor: pointer;
  padding: 18px;
  padding-right: 40px;
  height: 80px;
  font-family: "Orbitron", sans-serif;
  border: none;
  border-radius: 5px;
  text-align: left;
  outline: none;
  font-size: 17px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  background-position: 0 0, 20px 20px;
}

.arrow-down {
  width: 30px;
  height: 30px;
  border: 2px solid #000000;
  border-left: 0;
  border-top: 0;
  float: right;
  margin-left: 20px;
  transform: rotate(45deg);
}

.active,
.collapsible:hover {
  background-color: rgb(0 0 0);
  color: white;
  font-family: "Orbitron", sans-serif;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #000000;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.project-header {
  margin: 30px;
  color: rgb(255, 234, 0);
  font-weight: 900;
  font-size: 60px;
  font-family: "Orbitron", sans-serif;
}

@media screen and (max-width: 480px) {
  .project-header {
    margin: 0;
  }
}

.project-p {
  max-width: 880px;
  font-weight: lighter;
  padding-left: 30px;
}

@media screen and (max-width: 480px) {
  .project-p {
    padding: 0;
  }
}

/* project collapsable end */

a:link,
a:active,
a:visited,
a:hover {
  color: #000000;
}

.outerdiv {
  width: 100%;
  background: #ffcc01;
  display: flex;
  align-items: center;
  justify-content: center;
}

.innerdiv {
  transform: scale(0.9);
  margin: 1rem;
  display: grid;
  grid-gap: 1.5rem;
  grid-template-rows: repeat(2, 22rem);
  grid-template-columns: repeat(4, 17rem);
}

.eachdiv {
  padding: 1rem 2rem;
  border-radius: 4px;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.div1 {
  background: #000000;
  grid-column: 1/3;
  grid-row: 1/2;
  background-repeat: no-repeat;
  background-position-x: 25rem;
}

.div2 {
  background: #000000;
  grid-column: 3/4;
  grid-row: 1/2;
}

.div3 {
  background: white;
  grid-column: 4/5;
  grid-row: 1/3;
  color: black;
}

.div4 {
  background: white;
  grid-column: 1/2;
  grid-row: 2/3;
  color: black;
}

.div5 {
  background: #000000;
  grid-column: 2/4;
  grid-row: 2/3;
}

.userdetails {
  display: flex;
}

.imgbox {
  margin-right: 1rem;
}

.imgbox img {
  border-radius: 50%;
  width: 2rem;
  border: 2px solid #cec5c5;
}

.detbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detbox p {
  margin: 0;
}

.detbox .name {
  color: hsl(0, 0%, 81%);
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.detbox .name.dark {
  color: #49505a;
}

.detbox .designation {
  color: hsl(0, 0%, 81%);
  opacity: 50%;
  font-size: 0.8rem;
}

.detbox .designation.dark {
  color: #49505a;
}

.review h4 {
  font-size: 1.2rem;
  color: #ffd400;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.review.dark h4 {
  color: #4b5258;
}

.review p {
  color: #dedede;
}

.review.dark p {
  color: #0e0e0e;
}

.attribution {
  font-size: 1rem;
  line-height: 1.5;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  text-align: right;
}

.attribution a {
  text-decoration: none;
}

@media only screen and (max-width: 1000px) {
  .innerdiv {
    transform: scale(0.7);
  }
}

@media only screen and (max-width: 800px) {
  .innerdiv {
    transform: scale(0.6);
  }
}

@media only screen and (max-width: 600px) {
  .div1 {
    background-position-x: 10rem;
  }

  .innerdiv {
    display: flex;
    flex-direction: column;
    transform: scale(1);
    margin: 2rem;
    margin-bottom: 5rem;
  }

  .attribution {
    position: relative;
  }
}

/* quote end */

.cube {
  width: 150px;
  height: 150px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 10s linear infinite;
  background: url(./py-.png);
  background-position: center;
  background-size: contain;
  background-repeat: space;
}

@media screen and (max-width: 480px) {
  .cube {
    width: 100px; /* Set width to 90% for phone mode view */
    height: 100px; /* Set height to auto for phone mode view */
  }
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg) rotateY(40deg);
  }

  100% {
    transform: rotateX(0deg) rotateY(400deg);
  }
}

.cube .side {
  position: absolute;
  width: 155px;
  height: 155px;
  background-color: #fff;
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  .cube .side {
    width: 100px; /* Set width to 90% for phone mode view */
    height: 100px; /* Set height to auto for phone mode view */
  }
}

.cube .top {
  transform: translateZ(142px);
  top: 80%;
  left: 50%;
  margin-left: -220px;
  background: url(./react.png);
  background-position: center;
  background-size: contain;
  background-repeat: space;
}

.cube .bottom {
  transform: rotateX(0deg) translateZ(75px);
  bottom: 0;
  left: 50%;
  margin-left: 150px;
  background: url(./android-std.png);
  background-position: center;
  background-size: contain;
  background-repeat: space;
}

.cube .left {
  transform: rotateY(-90deg) translateZ(-190px);
  top: 50%;
  left: 0;
  margin-top: 178px;
  background: url(./ps.png);
  background-position: center;
  background-size: contain;
  background-repeat: space;
}

.cube .right {
  transform: rotateY(268deg) translateZ(60px);
  top: 50%;
  right: 0;
  margin-top: -357px;
  margin-top: -357px;
  background: url(./sketchpad.jpg);
  background-position: center;
  background-size: contain;
  background-repeat: space;
}

.cube .front {
  transform: translateZ(166px);
  top: 50%;
  left: 50%;
  margin-top: -252px;
  background: url(./figma.png);
  background-position: center;
  background-size: contain;
  background-repeat: space;
}

.cube .back {
  transform: rotateY(180deg) translateZ(169px);
  top: 50%;
  left: 10%;
  margin-top: 100px;
  background: url(./firebase.jpg);
  background-position: center;
  background-size: contain;
  background-repeat: space;
}

/* black cube begin */
.bcube {
  width: 60px;
  height: 60px;
  position: relative;
  transform-style: preserve-3d;
  animation: spin 10s linear infinite;
}

.bface {
  width: 100px;
  height: 100px;
  position: absolute;
  box-sizing: border-box;
  border: 1px solid #ff0000;
  background: black;
  background-size: 16px 16px;
  background-position: 50%;
  background-image: linear-gradient(
      90deg,
      rgba(55, 55, 255, 0.2) 1px,
      transparent 0
    ),
    linear-gradient(180deg, rgba(55, 55, 255, 0.2) 1px, transparent 0);
}

.bfront {
  transform: translateZ(50px);
}

.bback {
  transform: translateZ(-50px) rotateY(180deg);
}

.bleft {
  transform: rotateX(270deg) rotateY(0deg) translateZ(50px);
}

.bright {
  transform: rotateX(90deg) rotateY(180deg) translateZ(-50px) rotateZ(0deg);
}

.btop {
  transform: rotateY(90deg) translateZ(50px);
}
.bbottom {
  transform: rotateY(90deg) translateZ(-50px);
}

@keyframes spin {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  50% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
  100% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
}

.bcube-1 {
  width: 60px;
  height: 60px;
  position: relative;
  transform-style: preserve-3d;
  animation: spin-1 10s linear infinite;
}

@keyframes spin-1 {
  0% {
    transform: rotateX(60deg) rotateY(40deg) rotateZ(10deg);
  }
  50% {
    transform: rotateX(360deg) rotateY(340deg) rotateZ(300deg);
  }
  100% {
    transform: rotateX(60deg) rotateY(40deg) rotateZ(10deg);
  }
}

.bcube-2 {
  width: 60px;
  height: 60px;
  position: relative;
  transform-style: preserve-3d;
  animation: spin-2 10s linear infinite;
}

@keyframes spin-2 {
  0% {
    transform: rotateX(30deg) rotateY(160deg) rotateZ(60deg);
  }
  50% {
    transform: rotateX(320deg) rotateY(300deg) rotateZ(350deg);
  }
  100% {
    transform: rotateX(30deg) rotateY(160deg) rotateZ(60deg);
  }
}

.bcube-3 {
  width: 60px;
  height: 60px;
  position: relative;
  transform-style: preserve-3d;
  animation: spin-3 10s linear infinite;
}

@keyframes spin-3 {
  0% {
    transform: rotateX(230deg) rotateY(60deg) rotateZ(160deg);
  }
  50% {
    transform: rotateX(120deg) rotateY(130deg) rotateZ(10deg);
  }
  100% {
    transform: rotateX(230deg) rotateY(60deg) rotateZ(160deg);
  }
}
/* black cube end */

/* Project block begin */
.project-block {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-wrap: wrap;
}

/* Project block end */

/* flow chart begin */
.container-2 {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.binary {
  background-color: #ffffff;
  background-attachment: fixed;
  background-size: cover;
}

.tree {
  width: 100%;
  height: auto;
  text-align: center;
}

.tree ul {
  padding-top: 20px;
  position: relative;
  transition: 0.5s;
}

.tree li {
  display: inline-table;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 10px;
  transition: 0.5s;
}

.tree li::before,
.tree li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid #ccc;
  width: 51%;
  height: 10px;
}

.tree li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid #ccc;
}

.tree li:only-child::after,
.tree li:only-child::before {
  display: none;
}

.tree li:first-child::before,
.tree li:last-child::after {
  border: 0 none;
}

.tree li:last-child::before {
  border-right: 1px solid #ccc;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}

.tree ul ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid #ccc;
  width: 0;
  height: 20px;
}

.tree li a {
  border: 1px solid #ccc;
  padding: 10px;
  display: inline-grid;
  background: #ffffff;
  text-decoration-line: none;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.tree li a span {
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #000000;
  padding: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/*Hover-Section*/
.tree li a:hover,
.tree li a:hover i,
.tree li a:hover span,
.tree li a:hover + ul li a {
  background: #ffcc01;
  color: #000;
  border: 1px solid #94a0b4;
}

.tree li a:hover + ul li::after,
.tree li a:hover + ul li::before,
.tree li a:hover + ul::before,
.tree li a:hover + ul ul::before {
  border-color: #94a0b4;
}

/* flow chart end */

/* Column block begin */
.column-block {
  padding: 100px;
  background: #ffffff;
  color: black;
  background-image: radial-gradient(#d2d2d2 2px, transparent 2px),
    radial-gradient(#b0b0b0 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

#proj-name {
  box-shadow: rgb(0 0 0) 0px 0px 2px 0px, rgb(0 0 0) 0px 1px 0px 1px;
  padding: 20px;
  backdrop-filter: blur(7px);
}

#proj-para {
  column-count: 3;
  font-size: small;
  box-shadow: rgb(0 0 0) 0px 0px 2px 0px, rgb(0 0 0) 0px 1px 0px 1px;
  padding: 20px;
  backdrop-filter: blur(7px);
}

/* Background video on text begin */
/* Container should be full height and full width */

.text {
  display: grid;
  place-items: center;
  background-color: #ffcc01;
  color: #000;
  font-weight: 900;
  font-size: 100px;
  text-align: center;
  margin: 0%;
  font-family: "Orbitron", sans-serif;
  mix-blend-mode: multiply;
  user-select: none;
  background-image: radial-gradient(#000000 2px, transparent 2px),
    radial-gradient(#000000 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

@media screen and (max-width: 480px) {
  .text {
    font-size: 80px;
  }
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 32%;
  padding: 10px;
  height: 300px;
  /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* box - animation begin */
.box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 16px;
}

.box h2 {
  font-size: 2.8em;
  color: rgb(0, 0, 0);
  position: relative;
  font-weight: normal;
  z-index: 10;
  margin: 16px;
}

@media screen and (max-width: 480px) {
  .box h2 {
    font-size: 2em;
  }
}

.box h3 {
  font-size: 1.3em;
  color: rgb(0, 0, 0);
  position: relative;
  z-index: 10;
  margin: 10px;
  font-weight: 500;
}

@media screen and (max-width: 480px) {
  .box h3 {
    font-size: 1em;
  }
}

.box::before {
  content: "";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 950px;
  background-image: linear-gradient(rgb(0 0 0), rgb(0 0 0));
  animation: anime;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.box::after {
  content: "";
  position: absolute;
  inset: 3px;
  background-image: linear-gradient(45deg, #ffcc01, #ffcc01);
  border-radius: 12px;
}

@keyframes anime {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* box animation end */

/* background begin */
.block-bg {
  width: 100%;
  margin: auto;
  z-index: -1;
  position: absolute;
  background: url(./liquid-cheese.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container-bg {
  width: 100%;
  min-height: 100vh;
  padding-top: 59px;
  padding-left: 70px;
}

.a {
  width: 300px;
  height: 433px;
  background-color: red;
  -ms-transform: skewX(20deg);
  transform: skewX(70deg);
}

@media screen and (max-width: 480px) {
  .a {
    visibility: hidden;
  }
}

.b {
  width: 300px;
  height: 433px;
  background-color: red;
  -ms-transform: skewX(20deg);
  transform: skewX(110deg);
}

@media screen and (max-width: 480px) {
  .b {
    visibility: hidden;
  }
}

/* background end */

/* card-row */
.card-row {
  display: absolute;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 65px;
  gap: 50px;
  flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  .card-row {
    padding: 0;
    gap: 0;
  }
}

.title-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column; 
}

.card-two {
  display: relative;
  width: 202px;
  height: 240px;
  border: 1px solid grey;
  background-color: black;
  display: flex;
  justify-content: center;
  box-shadow: rgb(0 0 0 / 40%) 0px 2px 4px, rgb(0 0 0 / 30%) 0px 7px 13px -3px,
    rgb(0 0 0 / 20%) 0px -3px 0px inset;
}

/* qr begin */
.qr-ftr {
  color: #f4d203;
  font-size: 20px;
  padding: 190px 12px;
  position: absolute;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

/* qr end */

/* reveal card begin */
.project-container {
  display: flex;
  gap: 20px;
  padding: 121px;
  min-height: 861px;
  align-items: center;
  text-align: center;
  justify-content: center;
  align-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
  color: rgb(0, 0, 0);
  background-color: #ffcc01;
}

@media screen and (max-width: 480px) {
  .project-container {
    padding: 5px;
  }
}

.project-card {
  width: 45%;
  height: 325px;
  color: rgb(25, 25, 25);
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

@media screen and (max-width: 480px) {
  .project-card {
    width: auto;
    height: auto;
  }
}

/* reveal card end */

/* goal begin */
.block-goal {
  display: flex;
  align-items: center;
  padding: 120px;
  min-height: 100vh;
  background: white;
  flex-direction: row;
}

@media only screen and (max-width: 480px) {
  .block-goal {
    flex-direction: column;
  }
}

.goal {
  display: flex;
  flex-direction: column;
}

.goal > div {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  text-align: center;
  justify-content: center;
  background-color: #ffcc01;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

@media screen and (max-width: 480px) {
  .goal > div {
    width: 90px; /* Set width to 90% for phone mode view */
    height: 90px; /* Set height to auto for phone mode view */
    font-size: 8px;
  }
}

.goal > div:hover {
  background-color: #000000;
  color: white;
  box-shadow: rgb(255 255 255 / 40%) 0px 2px 4px,
    rgb(255 255 255 / 30%) 0px 7px 13px -3px,
    rgb(255 255 255 / 20%) 0px -3px 0px inset;
}

.goal > div > h2 {
  display: flex;
  align-items: center;
}

.goal-2 {
  display: flex;
  flex-direction: column;
}

.goal-2 > div {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  text-align: center;
  justify-content: center;
  background-color: #000;
  color: white;
  box-shadow: rgb(255 255 255 / 40%) 0px 2px 4px,
    rgb(255 255 255 / 30%) 0px 7px 13px -3px,
    rgb(255 255 255 / 20%) 0px -3px 0px inset;
}

@media screen and (max-width: 480px) {
  .goal-2 > div {
    width: 90px; /* Set width to 90% for phone mode view */
    height: 90px; /* Set height to auto for phone mode view */
    font-size: 8px;
  }
}

.goal-2 > div:hover {
  background-color: #ffcc01;
  color: rgb(0, 0, 0);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.goal-2 > div > h2 {
  display: flex;
  align-items: center;
}

/* goal end */

/* OS begin */
.containerbackground {
  position: absolute;
  font-size: 15em;
  text-align: center;
  z-index: -1;
  color: #ffcc01;
  text-shadow: 2px 2px 2px #85815d;
}

@media screen and (max-width: 480px) {
  .containerbackground {
    font-size: 9em;
  }
}

.logo-1 {
  display: flex;
  padding: 20px;
}

@media screen and (max-width: 480px) {
  .logo-1 > img {
    width: 120px;
    height: 120px;
    padding: 0;
  }
}

.windows {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  gap: 10px;
  flex-direction: column;
}

.win {
  height: 115px;
  width: 115px;
  background-color: rgb(0 169 254);
  box-shadow: rgb(0 0 0 / 40%) 0px 2px 4px, rgb(0 0 0 / 30%) 0px 7px 13px -3px,
    rgb(0 0 0 / 20%) 0px -3px 0px inset;
}

@media screen and (max-width: 480px) {
  .win {
    width: 60px; /* Set width to 90% for phone mode view */
    height: 60px; /* Set height to auto for phone mode view */
  }
}

.win:hover {
  background-color: whitesmoke;
}
/* OS end */

/* creative begin */
.font {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.font > span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17em;
  font-weight: 900;
  color: #ffcc01;
}

@media screen and (max-width: 480px) {
  .font > span {
    font-size: 5.5em;
  }
}

.content-btn {
  display: flex;
  gap: 15px;
  justify-content: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.centre {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.emoji {
  font-size: 50px;
  text-align: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
}

/* creative end */

/* hex begin */
.hex-block {
  margin: 5px;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.honeycomb {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  transform: translateY(80px);
}

.honeycomb-cell {
  -webkit-box-flex: 0;
  flex: 0 1 250px;
  max-width: 250px;
  height: 137.5px;
  margin: 65.4px 12.5px 25px;
  position: relative;
  padding: 0.5em;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  .honeycomb-cell {
    max-width: 175px;
    height: 97px;
    font-size: 0.6em;
  }
}

.honeycomb-cell_img {
  object-fit: cover;
  object-position: center;
}

.honeycomb-cell_title {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  text-transform: uppercase;
  color: rgb(0 0 0);
  font-weight: 700;
  font-size: 1.6em;
  transition: opacity 350ms;
}

.honeycomb-cell_title > small {
  font-weight: 300;
  margin-top: 0.25em;
}

.honeycomb-cell::before,
.honeycomb-cell::after {
  content: "";
}

.honeycomb-cell::before,
.honeycomb-cell::after,
.honeycomb-cell_img {
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  -webkit-clip-path: polygon(
    50% 0%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%,
    0% 25%
  );
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}

.honeycomb-cell::after {
  background: #ffcc01;
  transition: opacity 350ms;
  -webkit-transition: opacity 350ms;
}

.honeycomb-cell:hover .honeycomb-cell_title {
  opacity: 0;
}

.honeycomb-cell:hover .honeycomb-cell_img {
  filter: grayscale(0%);
}

.honeycomb-cell:hover::before {
  background: #2c2a2a;
}

.honeycomb-cell:hover::after {
  opacity: 0;
}

.honeycomb_Hidden {
  display: none;
  opacity: 0;
  width: 250px;
  margin: 0 12.5px;
}

/****** Responsive *******/

@media (min-width: 550px) and (max-width: 825px) {
  .honeycomb-cell:nth-child(3n) {
    margin-right: calc(50% - 125px);
    margin-left: calc(50% - 125px);
  }

  .honeycomb_Hidden:nth-child(3n + 5) {
    display: block;
  }
}

@media (min-width: 825px) and (max-width: 1100px) {
  .honeycomb-cell:nth-child(5n + 4) {
    margin-left: calc(50% - 275px);
  }

  .honeycomb-cell:nth-child(5n + 5) {
    margin-right: calc(50% - 275px);
  }

  .honeycomb_Hidden:nth-child(5n),
  .honeycomb_Hidden:nth-child(5n + 3) {
    display: block;
  }
}

@media (min-width: 1100px) {
  .honeycomb-cell:nth-child(7n + 5) {
    margin-left: calc(50% - 400px);
  }

  .honeycomb-cell:nth-child(7n + 7),
  .honeycomb-cell:nth-child(7n + 5):nth-last-child(2) {
    margin-right: calc(50% - 400px);
  }

  .honeycomb_Hidden:nth-child(7n + 7),
  .honeycomb_Hidden:nth-child(7n + 9),
  .honeycomb_Hidden:nth-child(7n + 11) {
    display: block;
  }
}

/* hex end */

.footer-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  background: white;
  font-family: "Orbitron", sans-serif;
}

/* UX begin */
.ui {
  background-color: #ffffff;
}

/* UX end */

/* todo list begin */
.todo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 80vh;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
#newtask {
  position: relative;
  padding: 30px 20px;
}
#newtask input {
  width: 400px;
  height: 45px;
  padding: 12px;
  color: #111111;
  font-weight: 500;
  position: relative;
  border-radius: 5px;
  font-family: "Orbitron";
  font-size: 15px;
  border: 2px solid #000000;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

@media screen and (max-width: 480px) {
  #newtask input {
    width: 335px;
  }
}

#newtask input:focus {
  outline: none;
  border-color: #ff0000;
}
#newtask button {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  background-color: #ff0000;
  border: 2px solid #000000;
  color: #ffffff;
  cursor: pointer;
  outline: none;
  height: 45px;
  border-radius: 5px;
  font-family: "Orbitron";
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
#tasks {
  border-radius: 10px;
  width: 100%;
  position: relative;
  display: flex;
  padding: 30px 20px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.task {
  border-radius: 5px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000000;
  cursor: pointer;
  background-color: #ff0000;
  height: 50px;
  color: white;
  width: 70%;
  margin-bottom: 8px;
  padding: 5px 10px;
  display: flex;
}
.task span {
  font-family: "Orbitron";
  font-size: 15px;
  font-weight: 400;
}
.task button {
  background-color: #ffcc01;
  color: #000000;
  font-family: unset;
  cursor: pointer;
  outline: none;
  height: 100%;
  width: 68px;
  border: 2px solid;
  border-radius: 5px;
}
/* todo list end */

/* Youtube begin */
/* monitor begin */
article {
  padding: 2.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 480px) {
  article {
    visibility: hidden;
  }
}

.monitor {
  width: 650px;
  height: 400px;
  border: solid 3px #d3d3d3;
  box-shadow: rgb(6 24 44 / 40%) 0px 0px 0px 2px,
    rgb(6 24 44 / 65%) 0px 4px 6px -1px, rgb(255 255 255 / 8%) 0px 1px 0px inset;
}

.monitor::-webkit-scrollbar {
  width: 15px;
}

.monitor::-webkit-scrollbar-thumb {
  background: white;
}

::-webkit-scrollbar-track {
  background-color: white;
}

.stand:before {
  content: "";
  display: block;
  position: relative;
  width: 150px;
  height: 33px;
  top: 434px;
  left: 250px;
  background-image: -webkit-radial-gradient(
      50% 0%,
      8% 50%,
      hsla(0, 0%, 100%, 0.5) 0%,
      hsla(0, 0%, 100%, 0) 100%
    ),
    -webkit-radial-gradient(50% 100%, 12% 50%, hsla(0, 0%, 100%, 0.6) 0%, hsla(
            0,
            0%,
            100%,
            0
          )
          100%),
    -webkit-radial-gradient(0% 50%, 50% 7%, hsla(0, 0%, 100%, 0.5) 0%, hsla(
            0,
            0%,
            100%,
            0
          )
          100%),
    -webkit-radial-gradient(100% 50%, 50% 5%, hsla(0, 0%, 100%, 0.5) 0%, hsla(
            0,
            0%,
            100%,
            0
          )
          100%),
    -webkit-repeating-radial-gradient(50% 50%, 100% 100%, hsla(0, 0%, 0%, 0) 0%, hsla(
            0,
            0%,
            0%,
            0
          )
          3%, hsla(0, 0%, 0%, 0.1) 3.5%),
    -webkit-repeating-radial-gradient(50% 50%, 100% 100%, hsla(0, 0%, 100%, 0)
          0%, hsla(0, 0%, 100%, 0) 6%, hsla(0, 0%, 100%, 0.1) 7.5%),
    -webkit-repeating-radial-gradient(50% 50%, 100% 100%, hsla(0, 0%, 100%, 0)
          0%, hsla(0, 0%, 100%, 0) 1.2%, hsla(0, 0%, 100%, 0.2) 2.2%),
    -webkit-radial-gradient(50% 50%, 200% 50%, hsla(0, 0%, 90%, 1) 5%, hsla(
            0,
            0%,
            85%,
            1
          )
          30%, hsla(0, 0%, 60%, 1) 100%);
}

.stand:after {
  content: "";
  display: block;
  position: relative;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
  width: 300px;
  height: 15px;
  top: 34px;
  left: 165px;
  background-image: -webkit-radial-gradient(
      50% 0%,
      8% 50%,
      hsla(0, 0%, 100%, 0.5) 0%,
      hsla(0, 0%, 100%, 0) 100%
    ),
    -webkit-radial-gradient(50% 100%, 12% 50%, hsla(0, 0%, 100%, 0.6) 0%, hsla(
            0,
            0%,
            100%,
            0
          )
          100%),
    -webkit-radial-gradient(0% 50%, 50% 7%, hsla(0, 0%, 100%, 0.5) 0%, hsla(
            0,
            0%,
            100%,
            0
          )
          100%),
    -webkit-radial-gradient(100% 50%, 50% 5%, hsla(0, 0%, 100%, 0.5) 0%, hsla(
            0,
            0%,
            100%,
            0
          )
          100%),
    -webkit-repeating-radial-gradient(50% 50%, 100% 100%, hsla(0, 0%, 0%, 0) 0%, hsla(
            0,
            0%,
            0%,
            0
          )
          3%, hsla(0, 0%, 0%, 0.1) 3.5%),
    -webkit-repeating-radial-gradient(50% 50%, 100% 100%, hsla(0, 0%, 100%, 0)
          0%, hsla(0, 0%, 100%, 0) 6%, hsla(0, 0%, 100%, 0.1) 7.5%),
    -webkit-repeating-radial-gradient(50% 50%, 100% 100%, hsla(0, 0%, 100%, 0)
          0%, hsla(0, 0%, 100%, 0) 1.2%, hsla(0, 0%, 100%, 0.2) 2.2%),
    -webkit-radial-gradient(50% 50%, 200% 50%, hsla(0, 0%, 90%, 1) 5%, hsla(
            0,
            0%,
            85%,
            1
          )
          30%, hsla(0, 0%, 60%, 1) 100%);
}

/* monitor end */

/* Youtube end */

/* footer */
footer {
  background-color: #ffcc01;
  border-top: 2px solid;
  padding: 50px 0;
  min-height: 40vh;
}

.row {
  display: flex;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #ffcc01;
  font-weight: bolder;
  color: rgb(0, 0, 0);
}

@media screen and (max-width: 480px) {
  .container > .row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

h3 {
  color: #000000;
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

a {
  color: #555;
  text-decoration: none;
}

a:hover {
  color: #000;
}

 

.col-sm-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* footer end */
 
