* {
  font-family: monospace;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #3b3644;
  transition: 0.2s ease-in-out;
  padding: 10px;
  font-size: 1rem;
  line-height: 1.9;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90vw;
}

.size {
  max-width: 750px;
}
.mt-3 {
  margin-top: 1rem !important;
}
.logo {
  max-height: 100%;
  max-width: 10rem;
  box-shadow: -3px 3px 4px 5px #322833, 3px -3px 4px 5px #322833, 3px 3px 4px 5px #322833,
    -3px -3px 4px 5px #322833;
  border-radius: 50%;
  transition: 0.5s linear;
}
.logo:hover {
  transform: rotate(360deg);
}
.badges {
  border-radius: 0;
  font-size: 12px;
  line-height: 1.2;
  margin: 8px 10px;
  padding: 0.375rem 0.5625rem;
  font-weight: normal;
  box-shadow: 3px 3px 3px #121113, -3px -3px 6px #121113;
  color: #e6daef;
  background-color: #2f293ae8;
  text-align: center;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.title {
  font-size: 3vh;
  text-align: center;
  margin: 0;
  color: rgb(199, 190, 199);
  font-weight: 700;
  padding: 4px 8px;
  margin: 20px 0px 5px 0px;
  border-radius: 3px;

  letter-spacing: 5px;
}
.t {
  box-shadow: 3px 3px 4px #ed8166, -3px -3px 4px #0e0d10;
}
.k {
  box-shadow: 3px 3px 4px #5b4c9a, -3px -3px 4px #0e0d10;
}
.s {
  box-shadow: 3px 3px 4px #c7559c, -3px -3px 4px #0e0d10;
}
.e {
  box-shadow: 3px 3px 4px #5598c7, -3px -3px 4px #0e0d10;
}
.p {
  box-shadow: 3px 3px 4px#55c773, -3px -3px 4px #0e0d10;
}
.b {
  box-shadow: 3px 3px 1px #673ab7, -3px -3px 1px #673ab7;
}
.c {
  box-shadow: 3px 3px 4px#c75584, -3px -3px 4px #0e0d10;
}
.card {
  box-shadow: 3px 3px 4px #2f2b2e, -3px -3px 4px #252529;
  padding: 2px 10px;
  margin-top: 1rem;
  border-radius: 0.3rem;
  color: #fff;
  font-weight: 550;
  font-family: monospace;
  font-size: 1.3rem;
  letter-spacing: 0.4px;
  text-align: center;
  animation: fade 1s forwards;
}
.p-2 {
  padding: 1rem;
  box-shadow: 3px 3px 3px #70627d, -3px -3px 6px #70627d;
}
a {
  color: tomato;
  text-decoration: none;
}
@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.i_text {
  font-size: 1.1rem;
  color: #ba9feb;
}

.text_start {
  text-align: start !important;
}

.Exp_head {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1.1px;
  color: #91bde0;
}

.box {
  width: 320px;
  max-width: 82vw;
  height: 200px;
  box-shadow: 3px 3px 4px #673ab7, -3px -3px 4px #673ab7;
}
.Project_head {
  font-size: 1.5rem;
  color: #dfdae8;
  font-weight: 700;
}


svg {
  display: block;
  font-size: 6em;
  margin-top: -2rem;
  margin-bottom: 1rem;
}

.text-copy {
  fill: rgba(255, 255, 255, 0.073);
  stroke: rgba(255, 255, 255, 0.247);
  stroke-dasharray: 7% 22%;
  stroke-width: 2.9px;
  stroke-dashoffset: 9%;
  animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1){
stroke: #b58cfe;
animation-delay: -1s;
}

.text-copy:nth-child(2){
stroke: #3add40;
animation-delay: -2s;
}

.text-copy:nth-child(3){
stroke: #b43e3e;
animation-delay: -3s;
}

.text-copy:nth-child(4){
stroke: #d67761;
animation-delay: -4s;
}

.text-copy:nth-child(5){
stroke: #3e23ac;
animation-delay: -5s;
}

@keyframes stroke-offset{
100% {stroke-dashoffset: -35%;}
}

a {
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
}



