* {
  box-sizing: border-box;
  margin: 0;
  color: #ffffff;
  padding: 0;
  font-family: "Courier New", Courier, monospace;
  cursor: crosshair;
  transition: 0.5s;
}
body {
  background: #121212;
}
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.widget {
  background: #212121;
  height: 15vh;
  border-radius: 5px;
  border: 0.5px solid #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  text-align: center;
}
.widget:hover {
  border: 0.5px solid #fff;
}
.container {
  width: 75vw;
  height: 75vh;
}
.grid-section {
  width: 100%;
  height: 100%;
}
.grid {
  width: 100%;
  display: grid;
  grid-auto-flow: dense;
  grid-template:
    "1fr 1fr 1fr 1fr" 15vh
    "1fr 1fr 1fr 1fr" 15vh
    "1fr 1fr 1fr 1fr" 15vh;
  grid-gap: 2vh;
}
.user {
  grid-column: span 4;
}
.bigname {
  font-size: 7.5vh;
  margin-left: 2vw;
  margin-right: 1vw;
  background-image: linear-gradient(
    to left,
    red,
    orange,
    yellow,
    green,
    blue,
    purple
  );
  -webkit-background-clip: text;
  color: transparent;
  animation: rainbow 5s ease-in-out infinite;
}
.nexttoname {
  display: flex;
  align-items: baseline;
  height: 7.5vh;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  font-size: 2vh;
}
.name {
  display: flex;
  justify-content: center;
  align-items: center;
}
.end {
  margin-right: 2vw;
}
.brand-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  height: 5vh;
  width: 5vh;
  filter: grayscale(100%);
  transition: 0.2s ease-in-out;
}

.brand-icon:hover {
  filter: grayscale(0%);
}
.yt {
  width: 5vh;
  height: 4.5vh;
}
@keyframes rainbow {
  0% {
    background-image: linear-gradient(
      to left,
      red,
      orange,
      yellow,
      green,
      blue,
      purple
    );
  }
  20% {
    background-image: linear-gradient(
      to left,
      purple,
      red,
      orange,
      yellow,
      green,
      blue
    );
  }
  30% {
    background-image: linear-gradient(
      to left,
      blue,
      purple,
      red,
      orange,
      yellow,
      green
    );
  }
  40% {
    background-image: linear-gradient(
      to left,

      green,
      blue,
      purple,
      red,
      orange,
      yellow
    );
  }
  50% {
    background-image: linear-gradient(
      to left,
      yellow,
      green,
      blue,
      purple,
      red,
      orange
    );
  }
  60% {
    background-image: linear-gradient(
      to left,
      orange,
      yellow,
      green,
      blue,
      purple,
      red
    );
  }
}
.widget:not(.user) {
  justify-content: center;
  flex-direction: column;
}
.age {
  font-size: 7.5vh;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes massive {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}
.cl {
  background: orange;
  height: 2vh;
  width: 80%;
}
.cltxt,
.pftxt,
.pytxt,
.untxt {
  font-style: italic;
}
a {
  text-decoration: none;
}
.pf {
  background: url(poafa.png);
}
.py {
  background: url(py.png);
}
.un {
  background: url(un.png);
}
.pf,
.py,
.un {
  height: 10vh;
  width: 10vh;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}
.mcskin {
  grid-row: span 3;
  height: 49vh;
}
.mcskin img {
  margin-top: 2vh;
  height: 40vh;
  filter: drop-shadow(0.2vw 0 0 orange) drop-shadow(0 0.2vw 0 orange)
    drop-shadow(-0.2vw 0 0 orange) drop-shadow(0 -0.2vw 0 orange);
}
.langs .progress {
  border-radius: 7px;
  -webkit-appearance: none;
}
progress[value]::-webkit-progress-bar,
progress[value]::-moz-progress-bar {
  background-color: orange;
}
.langwidg {
  grid-row: span 2;
  height: 32vh;
}
.btmright {
  grid-column: span 2;
}
#clock {
  font-size: 10vh;
}
