* {
  font-family: "JetBrains Mono", monospace;
  margin: 0;
  padding: 0;
}
body {
  background-color: white;
}

a {
  text-decoration: none;
}

.centered {
  text-align: center;
  margin-left: 0px;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.mobile {
  display: none;
}

.desktop {
  display: inline;
}
.hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50vh;
  background-color: rgb(23, 23, 31);
}

.hero-text {
  text-align: center;
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
  color: white;
}

h1 {
  font-size: 5rem;
  font-weight: 600;
}

h2 {
  text-align: center;
  font-size: 2rem;
}

.wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.wave svg {
  position: relative;
  display: block;
  width: calc(100%);
  height: 66px;
}

.wave .shape-fill {
  fill: #ffffff;
}

.blinking {
  -webkit-animation: blinkingText 1s infinite;
  animation: blinkingText 1s infinite;
}
@-webkit-keyframes blinkingText {
  0% {
    color: white;
  }
  49% {
    color: white;
  }
  50% {
    color: transparent;
  }
  99% {
    color: transparent;
  }
  100% {
    color: white;
  }
}
@keyframes blinkingText {
  0% {
    color: white;
  }
  49% {
    color: white;
  }
  50% {
    color: transparent;
  }
  99% {
    color: transparent;
  }
  100% {
    color: white;
  }
}

.my-projects {
  padding: 2rem 20vw 0;
}

h3 {
  color: black;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.list {
  margin-left: 4rem;
}

.margin-left {
  margin-left: 3rem;
}

.my-projects a {
  color: #3e42fa;
  text-decoration: none;
}

a:hover {
  color: #2326cc;
  text-decoration: none;
}

h3 span {
  font-size: 1.5rem;
}

.icon {
  margin: 2rem 0rem;
}

.discordbox {
  width: fit-content;
  margin: 3rem auto;
}

.discordimg {
  padding: 0 5%;
  width: 90%;
}

footer {
  color: white;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: 0;
  width: 100%;
  height: 3rem;
  background: rgb(23, 23, 31);
}

.yellow {
  color: #fd0;
}

.pink {
  color: rgb(173, 33, 99);
}

.yellow:hover {
  color: #e1c300;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 750px) {
  p {
    font-size: 0.8rem;
  }
  .my-projects {
    padding: 2rem 10vw 0;
  }
  .mobile {
    display: inline;
  }
  .desktop {
    display: none;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1rem;
  }
  h3 span {
    font-size: 0.9rem;
  }
  .my-projects ul {
    margin-left: 2rem;
  }

  .margin-left {
    margin-left: 1rem;
  }
}
