:root {
  --banner: url(assets/images/banner.png);
}
@keyframes top {
  0% {
    margin-top: 200px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
.discord-status {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  transition: border .5s ease-in,background-color .5s ease-in;
  position: absolute;
  transform: translate(-600%, 133%);
}
.online {
  box-shadow: 0 0 3px 4px #131416;
  background-color: #23a55a;
}
.offline {
  box-shadow: 0 0 3px 4px #131416;
  background-color: #80848e;
}
.idle {
  box-shadow: 0 0 3px 4px #131416;
  background-color: #f0b232;
}
.dnd {
  box-shadow: 0 0 3px 4px #131416;
  background-color: #f23f43;
}
.spotifyplayer {
  margin-top: 24px;
  width: 320px;
  height: 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 0 5px #80848e;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  opacity: 0;
  transition: opacity 0.5s;
}
.spotifyplayer.show {
  opacity: 1;
}
#spotify-avatar {
  border-radius: 20%;
  margin-right: 210px;
}
.text-spotify-listen, .text-spotify {
  flex: 1;
  text-align: start;
  margin-left: -190px;
}
.text-color-spotify-listen {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255)
}
.text-spotify {
  font-size: 0.9rem;
    --tw-text-opacity: 1;
  color: rgb(116, 116, 116);
}
main {
  position: relative;
  z-index: 1;
  padding: 30px 30px 0.5px 30px;
  background-color: var(--background-tertiary);
}
.title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px; 
  margin-bottom: 5px;
  text-align: center; 
}
.title span {
  color: #2977ff; 
}
.title span:last-child {
  color: white;
}
body {
  position: relative;
  height: 100vh;
  min-height: 850px;
  background-color: #1F1F1F;
}
body > div {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  background: linear-gradient(transparent 0%, transparent 70%, var(--background-tertiary) 100%);
}
body > div #notificationPopup {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50px;
  width: 400px;
  background-color: var(--background-tertiary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  animation: top 800ms;
}
body > div #notificationPopup .banner {
  width: 100%;
  height: 13%;
  min-height: 140px;
  background: var(--banner) center/cover no-repeat;
}
body > div #notificationPopup .notification-header {
  position: relative;
  margin: 0 30px;
}
body > div #notificationPopup .notification-header .avatar {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100px;
  height: auto;
}
body > div #notificationPopup .notification-header .avatar > :first-child {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
body > div #notificationPopup .notification-header .username {
  font-family: 'Golos Text', sans-serif;
  color: var(--text-primary);
  margin-top: 75px;
}
body > div #notificationPopup .notification-header #badgeList {
  position: absolute;
  display: flex;
  top: 20px;
  right: 0;
}
body > div #notificationPopup .notification-header #badgeList .badge {
  width: 23px;
  height: 23px;
  margin-right: 13px;
}
body > div #notificationPopup .notification-header #badgeList .badge img {
  width: 100%;
  height: 100%;
}
body > div #notificationPopup .notification-header #badgeList .badge:last-child {
  margin-right: 0;
  transform: scale(1.15);
}
body > div #notificationPopup .notification-header .status {
  font-family: 'Golos Text', sans-serif;
  font-weight: lighter;
  color: var(--text-secondary);
  margin-top: 8px;
}
@keyframes animate {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 360px;
  }
}
@keyframes animate2 {
  0% {
    background-position-x: 360px;
  }
  100% {
    background-position-x: 0;
  }
}
body > div #notificationPopup .notification-header .about {
  margin-top: 20px;
}
body > div #notificationPopup .notification-header .about h4 {
  color: var(--text-primary);
}
body > div #notificationPopup .notification-header .about #data {
  font-family: 'Golos Text', sans-serif;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  color: var(--text-primary);
}
body > div #notificationPopup .notification-header .about #data .about-me {
  position: relative;
  display: flex;
  align-items: center;
  height: 12px;
  margin: 0 6px 6px 0;
  padding: 7px;
  border: solid;
  border-width: 0 0 0 3px;
  border-radius: 1px 3px 3px 1px;
  font-size: 0.85rem;
}
.rounded-md {
  border-radius: 12px
}
.rounded-full {
  width: 55px;
  height: 55px;
  border-radius: 9999px;
  box-shadow: 0 0 10px #80aeff;
  position: relative;
  right: -4px;
  transition: border .5s ease-in,background-color .5s ease-in;
  border: 2.4px solid #242424;
}
body > div #notificationPopup .notification-header .about #data .about-me img {
  height: 30px;
  margin: -15px 5px 0 0;
}
body > div #notificationPopup .message {
  margin: 20px;
}
body > div #notificationPopup .message input {
  width: calc(100% - 16px);
  height: 40px;
  background-color: var(--background-secondary);
  border: none;
  padding: 10px;
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: 'Golos Text', sans-serif;
  pointer-events: initial;
}
body > div #notificationPopup .message input:focus {
  outline: none;
}
body {
  --border-radius: 8px;
  --text-primary: #ECF1ED;
  --text-secondary: #D4D4D4;
  --text-tertiary: #5B6886;
  --background-primary: #23283d;
  --background-secondary: #2f3136;
  --background-tertiary: #1F1F1F;
  height: 100vh;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
body h1, body h2, body h3, body h4, body div, body ::placeholder {
  font-family: "Inter", serif;
  margin: 0;
}
@media (max-width: 570px) {
  body #popout {
    transform: scale(0.9);
  }
  body .projects {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
body a {
  text-decoration: none;
}
body a:visited, body a:link {
  color: unset;
}
body::-webkit-scrollbar {
  background-color: var(--background-tertiary);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--background-secondary);
}