@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&family=M+PLUS+1p&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

::selection {
  border: 2px solid rgba(79, 79, 79, 0.101);
  background-color: #353535;
  color: #ffffff;
}

::-moz-selection {
  border: 2px solid rgba(79, 79, 79, 0.101);
  background-color: #353535;
  color: #ffffff;
}

html {
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease forwards;
}

.modal-content {
  background: #090909;
  color: #f0f0f0;
  margin: 10% auto;
  padding: 10px 25px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: slideUp 0.4s ease forwards;
  font-family: 'Montserrat', sans-serif;
}

.close {
  color: #f0f0f0;
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  color: #ffffff;
}

#forecast ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#forecast li {
  background: #0e0e0e;
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.3s ease;
}

#forecast li:hover {
  background: #1c1c1c;
}

strong {
  font-weight: 400;
}

#forecast li strong {
  font-size: 14px;
  color: #aaa;
}

#forecast li span {
  font-size: 16px;
  color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blurIn {
  from {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
  to {
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  animation: blurIn 0.5s ease forwards;
}

.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.overlay.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}


.overlay-content {
  position: relative;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  background-color: hsl(0, 0%, 0%);
  max-width: 600px;
  height: 550px;
  width: 300px;
}

.overlay-content button {
  margin-left: 200px;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
}

.gift_video {
  height: auto;
  width: 200px;
  pointer-events: none; 
}

.overlay_text {
  font-weight: 600;
  font-size: 20px;
}

.overlay_description {
  margin-bottom: 20px;
  font-size: 15px;
}

.icon_close {
  margin-left: 75px;
  height: 20px;
  width: 20px;
}

table {
  width: 100%;
  border-collapse: separate;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #2e2e2e;
  overflow: hidden; 
}

th, td {
  padding: 8px;
  text-align: left;
  vertical-align: middle;
  background-color: #2e2e2e;
}

th {
  font-style: normal;
  background-color: #252525; 
  color: white;
}

td {
  display: flex;
  align-items: center;
}

.icon_table {
  border-radius: 50%;
  width: 25px;
  margin-right: 8px;
}

.icon_stars {
  height: 25px;
  width: 33px;
}

body {
    overflow: hidden;
    overflow-y: visible;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: rgb(10 10 10);
    color: #ffffff;
    display: block;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}
  
a {
    color: #bfbfbf;
    text-decoration: none;
}

.wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.parent {
  display: flex;
}

.right {
  padding: 5px;
}

.left {
  padding: 5px;
}

.Block {
  display: inline-block;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 12px;
  padding: 10px;
  padding-left: 15px;
  margin: 20px 0 0 15px;
  width: 150px;
  height: 100px;
  color: #ffffff; 
  }

  .Block1 {
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 15px 0 0 15px;
    width: 150px;
    height: 100px;
    color: #ffffff; 
    }

  .Block2 {
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    border-radius: 12px;
    padding: 10px;
    margin: 15px 0 0 15px;
    width: 300px;
    height: 100px;
    color: #ffffff;
    cursor: pointer;
  }  

  .text_name {
    margin-top: 10px;
    gap: 1rem;
    padding-top: 10rem;
    font-size: 12px;
    color: #bbbbbb;
    padding: 5px;
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
  }

  .text_name_info {
    gap: 1rem;
    padding-top: 10rem;
    font-size: 15px;
    color: #bbbbbb;
    padding: 10px;
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
  }

  #current_time {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    text-align: left;
    padding: 5px;
    font-size: 17px;
    color: rgb(214, 214, 214);
  }
  
  #current_date {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    text-align: left;
    padding: 5px;
    font-size: 1rem;
    color: rgb(214, 214, 214);
  }

  #current_weather {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    text-align: left;
    padding: 5px;
    font-size: 17px;
    color: rgb(214, 214, 214);
  }

  #text_hover {
    padding: 5px;
    font-size: 1rem;
    margin-top: 5px;
    color: #bbbbbb;
  }

  #text_date {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    padding: 5px;
    font-size: 1rem;
    color: #bbbbbb;
  }

  #text_utc {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    padding: 5px;
    font-size: 15px;
    color: #bbbbbb;
  }

  #text_deheree {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    padding: 5px;
    font-size: 1rem;
    color: #bbbbbb;
  }

  .Block_info {
    transition: transform 0.5s ease-in-out;
    display: inline-block;
    border: 2px solid rgba(60, 60, 60, 0.101);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: rgb(11 11 11);
    border-radius: 12px;
    padding-left: 20px;
    padding: 10px;
    margin: 20px 0 0 15px;
    width: 700px;
    height: 400px;
    color: #ffffff;
    font-family: Arial, sans-serif;
  }

  .Block_info:hover {
    transform: scale(1.01); 
}

  #text_hi {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 19px;
    margin-left: 12px;
}

.avatar_info {
    padding: 3px 7px 0px;
    display: flex;
}

.avatar_info img {
  margin-left: 10px;
    display: inline-block;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.text_names {
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: inline-block;
    text-shadow: 0 0 150px #ffa008, 0 0 60px #ff8c08;
    background: linear-gradient(45deg, #f9b11f, #ff561e);
    background-size: 400% 400%; 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fcfcfc;
    animation: gradientShift 2s infinite;
    font-size: 25px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.buttons {
  font-family: "Poppins", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    margin-top: 5px;
    width: 100%;
}

.button {
    border-radius: 30px;
    background-color: rgb(9 9 9 / 20%);
    border: 2px solid rgba(93, 93, 93, 0.101);
    color: #bbb;
    height: 40px;
    width: 130px;
    text-align: center;
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.button2 {
  border-radius: 30px;
  background-color: rgb(9 9 9 / 20%);
  border: 2px solid rgba(73, 73, 73, 0.101);
  color: #bbb;
  height: 40px;
  width: 90px;
  text-align: center;
  display: flex; 
  justify-content: center; 
  align-items: center;
}

  @keyframes shimmer {
    from {
      background-position: 200% 0;
    }
    to {
      background-position: -200% 0;
    }
  }

  .icon_info {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
    margin-right: 8px;
    margin-top: 25px;
    filter: grayscale(100%);
  }

  .description_info {
    margin-right: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #d5d5d5;
    font-size: 16px;
    margin-left: 10px;
}

.button1 {
  margin-left: 25px;
  border-radius: 15px;
  background-color: rgb(9, 9, 9);
  border: 2px solid rgba(108, 108, 108, 0.101);
  color: #bbb;
  height: 40px;
  width: 130px;
  text-align: center;
  display: flex;
  margin-top: 20px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.icon_info1 {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain;
  margin-right: 6px;
  margin-top: 6px;
  filter: grayscale(100%);
}

.buttons1 {
  font-family: "Poppins", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  display: flex;
  font-size: 15px;
  margin-top: 10px;
  width: 100%;
}

.block_spotify {
  transition: transform 0.5s ease-in-out;
  border: 2px solid rgba(60, 60, 60, 0.101);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: rgb(11 11 11);
  border-radius: 12px;
  padding: 10px;
  margin: 20px 0 0 15px;
  width: 700px;
  height: 175px;
  color: #ffffff;
}

.block_spotify:hover {
  transform: scale(1.01); 
}

.song_cover {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  float: left;
  margin-right: 15px;
  margin-left: 20px;
}

#trackDetails {
  overflow: hidden;
  text-align: left;
}

#trackName {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800px;
  font-style: bold;
  margin: 5px;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#artistName {
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  margin: 5px;
  font-size: 14px;
  color: #b3b3b3;
}

#progressContainer {
  margin: 20px 0 0 20px;
  background-color: #333;
  border-radius: 4px;
  overflow: hidden;
  width: 650px;
  height: 8px;
  position: relative;
}

#progressBar {
  background-color: #5f5f5f;
  height: 100%;
  width: 0;
  border-radius: 0 15px 15px 0;
}

#timeInfo {
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-size: 14px;
  margin-top: 12px;
  color: #b3b3b3;
}

.Block_projects {
  display: inline-block;
  transition: transform 0.5s ease-in-out;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 12px;
  padding: 10px;
  padding-left: 15px;
  margin: 20px 0 0 0;
  width: 555px;
  height: 218px;
  color: #ffffff;
}

.Block_projects:hover {
  transform: scale(1.01); 
}

.Block_projects_info {
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
  border-radius: 12px;
  padding: 10px;
  padding-left: 15px;
  margin: 20px 0 0 0;
  display: inline-block;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  color: #ffffff;
  width: 520px;
  height: 120px;
}


.text_projects_info {
  margin-top: 10px;
  padding-top: 10rem;
  font-size: 15px;
  color: #ffffff;
  padding: 7px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}


.Block_projects_info:hover {
  transform: scale(0.98);
}

.description_projects_info {
  font-family: "Fira Code", monospace;
  font-weight: 400;
  font-style: normal;
  color: #818181;
  margin-top: 10px;
  font-size: 15px;
  margin-left: 10px;
}

.Block_skill {
  transition: transform 0.5s ease-in-out;
  display: inline-block;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 12px;
  padding: 10px;
  padding-left: 15px;
  margin: 20px 0 0 0;
  width: 555px;
  height: 500px;
  color: #ffffff;
}

.Block_skill:hover {
  transform: scale(1.01); 
}

.text_skill_info {
  border-radius: 12px;
  padding: 10px;
  padding-left: 5px;
  margin: 20px 0 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  font-size: 20px;
  margin-left: 10px;
}

.Block_skills {
  display: inline-block;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 10px;
  margin: 10px 10px 10px 10px;
  width: 530px;
  height: 128px;
  color: #ffffff;
}

.icon_skill_info {
  width: 20px !important;
  height: 20px !important;
  margin-right: 8px;
  margin-top: 5px;
  filter: grayscale(100%);
}

.text_skill {
  padding-left: 5px;
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  margin: 15px 10px;
  font-size: 11px;
  text-align: center;
  display: flex;
  justify-content: left;
  align-items: center;
}

#skill_active {
  width: 10px;
  height: 10px;
  background-color: #3edc26;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin: 39px 0 0 30px;
  text-align: center;
  box-shadow: 0px 0px 50px 0px #5bff43, 0 0 50px 4px #22ff00, 0 0 50px #22ff0000, 0 0 90px 11px #3edc26;
}

.text_skill_avtive {
  padding-left: 60px;
  white-space: nowrap;
  width: 5px;
  height: 14px;
  font-family: "Fira Code", monospace;
  font-weight: 100;
  font-size: 14px;
  font-style: normal;
  color: #3edc26;
}


#skill_processing {
  width: 7px;
  height: 7px;
  background-color: #26dcca;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin: 40px 0 0 30px;
  text-align: center;
  box-shadow: 0 0 50px 4px #26dcca, 0 0 50px 10px #26dccac7, 0 0 50px #26dcca, 0 0 900px 15px #00ffe68c;
}

.text_skill_processing {
  padding-left: 60px;
  white-space: nowrap;
  width: 7px;
  height: 12px;
  font-family: "Fira Code", monospace;
  font-weight: 100;
  font-size: 14px;
  font-style: normal;
  color: #26dcca;
}


@media (max-width: 750px) {
  .Block {
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 20px 0 0 15px;
    width: 150px;
    height: 100px;
    color: #ffffff; 
    }
  
    .Block1 {
      display: inline-block;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      border: 2px solid rgba(60, 60, 60, 0.101);
      background-color: rgb(11, 11, 11);
      border-radius: 12px;
      padding: 10px;
      padding-left: 15px;
      margin: 15px 0 0 15px;
      width: 150px;
      height: 100px;
      color: #ffffff; 
      }
  
    .Block2 {
      display: inline-block;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      border: 2px solid rgba(60, 60, 60, 0.101);
      background-color: rgb(11, 11, 11);
      border-radius: 12px;
      padding: 10px;
      margin: 15px 0 0 15px;
      width: 264px;
      height: 100px;
      color: #ffffff; 
    }  

  .Block_info {
    width: 690px;
    height: 380px;
    margin: 10px 5px;
    padding: 5px;
  }

  .description_info {
    word-wrap: break-word;
    font-size: 15px;
  }

  .text_name, .text_name_info, #current_time, #current_date, #current_weather, #text_hover, #text_date, #text_utc, #text_deheree {
    font-size: 12px;
    padding: 5px;
  }
  
  .avatar_info img {
    height: 100px;
    width: 100px;
  }

  .text_names {
    font-size: 30px;
    font-weight: 500;
  }

.button {
  font-size: 15px;
  width: 150px;
  height: 40px;
}
  
.buttons1 {
    gap: 10px;
    width: 100%;
  }

  .button1 {
    width: 150px;
    height: 40px;
  }

  .icon_info, .icon_info1 {
    width: 20px !important;
    height: 20px !important;
  }

  .block_spotify {
    margin-top: 5px;
    margin-left: 5px;
    width: 680px;
    height: 180px;
  }

  .song_cover {
    margin: 15px 10px 0 20px;
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }

  #trackName {
    margin: 15px 10px 0 20px;
    font-size: 21px;
  }

  #artistName {
    font-size: 16px;
  }
 }

@media (max-width: 700px) {
  .parent {
    display: block;
  }
  
  .left {
    padding: 10px;
  }
  
  .right {
    padding: 10px;
  }
  
  .Block_projects {
    display: inline-block;
    transition: transform 0.5s ease-in-out;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 0px 0 0 0px;
    width: 448px;
    height: 200px;
    color: #ffffff
  }

  .Block_projects_info {
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 20px 0 0 0;
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    color: #ffffff;
    width: 410px;
    height: 115px;
}

.Block_skill {
  transition: transform 0.5s ease-in-out;
  display: inline-block;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 12px;
  padding: 10px;
  padding-left: 15px;
  margin: 15px 0 0 0px;
  width: 449px;
  height: 470px;
  color: #ffffff;
}

.Block_skills {
  display: inline-block;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 10px;
  margin: 10px 10px 10px 10px;
  width: 425px;
  height: 120px;
  color: #ffffff;
}

.description_projects_info {
  font-family: "Fira Code", monospace;
  font-weight: 400;
  font-style: normal;
  color: #818181;
  margin-top: 10px;
  font-size: 12px;
  margin-left: 10px;
}

.text_projects_info {
  margin-top: 10px;
  padding-top: 10rem;
  color: #ffffff;
  padding: 7px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
}

  .Block {
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 20px 0 0 15px;
    width: 150px;
    height: 100px;
    color: #ffffff; 
    }
  
    .Block1 {
      display: inline-block;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      border: 2px solid rgba(60, 60, 60, 0.101);
      background-color: rgb(11, 11, 11);
      border-radius: 12px;
      padding: 10px;
      padding-left: 15px;
      margin: 15px 0 0 15px;
      width: 150px;
      height: 100px;
      color: #ffffff; 
      }
  
    .Block2 {
      display: inline-block;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      border: 2px solid rgba(60, 60, 60, 0.101);
      background-color: rgb(11, 11, 11);
      border-radius: 12px;
      padding: 10px;
      margin: 15px 0 0 15px;
      width: 196px;
      height: 100px;
      color: #ffffff;
    }  

  .Block_info {
    width: 604px;
    height: 410px;
    margin: 20px 15px;
    padding: 5px;
  }

  .description_info {
    word-wrap: break-word;
    font-size: 15px;
  }

  .text_name, .text_name_info, #current_time, #current_date, #current_weather, #text_hover, #text_date, #text_utc, #text_deheree {
    font-size: 12px;
    padding: 5px;
  }
  
  .avatar_info img {
    height: 100px;
    width: 100px;
  }

  .text_names {
    font-size: 26px;
    font-weight: 500;
  }
  
.buttons1 {
    gap: 10px;
    width: 100%;
  }

  .button1 {
    width: 150px;
    height: 40px;
  }

  .icon_info, .icon_info1 {
    width: 20px !important;
    height: 20px !important;
  }

  .block_spotify {
    margin-top: 5px;
    margin-left: 10px;
    width: 602px;
    height: 200px;
  }

  .song_cover {
    margin: 15px 10px 0 20px;
    width: 90px;
    height: 90px;
    margin-right: 10px;
  }

  #trackName {
    margin: 15px 10px 0 20px;
    font-size: 18px;
  }

  #artistName {
    font-size: 15px;
  }
 }

 
@media (max-width: 600px) {
  .Block {
    display: none;
  }
  .Block1 {
    display: none;
  }
  .Block2 {
    display: none;
  }

  .Block_info {
    width: 450px;
    height: 450px;
    margin: 10px 5px;
    padding: 5px;
  }

  .description_info {
    word-wrap: break-word;
    font-size: 15px;
  }

  .text_name, .text_name_info, #current_time, #current_date, #current_weather, #text_hover, #text_date, #text_utc, #text_deheree {
    font-size: 12px;
    padding: 5px;
  }
  
  .avatar_info img {
    height: 100px;
    width: 100px;
  }

  .text_names {
    font-size: 30px;
    font-weight: 500;
  }
  .buttons {
  display: none;
  }
  
.buttons1 {
    gap: 10px;
    width: 100%;
  }

  .button1 {
    width: 150px;
    height: 40px;
  }

  .icon_info, .icon_info1 {
    width: 20px !important;
    height: 20px !important;
  }

  .block_spotify {
    margin-top: 5px;
    margin-left: 15px;
    width: 430px;
    height: 180px;
  }

  .song_cover {
    margin: 15px 10px 0 20px;
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }

  #trackName {
    margin: 15px 10px 0 20px;
    font-size: 16px;
  }

  #artistName {
    font-size: 12px;
  }
 }

@media (max-width: 550px) {
  .Block {
    display: none;
  }
  .Block1 {
    display: none;
  }
  .Block2 {
    display: none;
  }

  .Block_info {
    width: 450px;
    height: 450px;
    margin: 10px 5px;
    padding: 5px;
  }

  .description_info {
    word-wrap: break-word;
    font-size: 15px;
  }

  .text_name, .text_name_info, #current_time, #current_date, #current_weather, #text_hover, #text_date, #text_utc, #text_deheree {
    font-size: 12px;
    padding: 5px;
  }
  
  .avatar_info img {
    height: 100px;
    width: 100px;
  }

  .text_names {
    font-size: 30px;
    font-weight: 500;
  }
  .buttons {
  display: none;
  }
  
.buttons1 {
    gap: 10px;
    width: 100%;
  }

  .button1 {
    width: 150px;
    height: 40px;
  }

  .icon_info, .icon_info1 {
    width: 20px !important;
    height: 20px !important;
  }

  .block_spotify {
    margin-top: 5px;
    margin-left: 2px;
    width: 446px;
    height: 180px;
  }

  .song_cover {
    margin: 15px 10px 0 20px;
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }

  #trackName {
    margin: 15px 10px 0 20px;
    font-size: 16px;
  }

  #artistName {
    font-size: 12px;
  }
 }

 @media (max-width: 500px) {
  .Block {
    display: none;
  }
  .Block1 {
    display: none;
  }
  .Block2 {
    display: none;
  }

  .Block_info {
    width: 500px;
    height: 430px;
    margin: 10px 5px;
    padding: 5px;
  }

  .description_info {
    word-wrap: break-word;
    font-size: 15px;
  }

  .text_name, .text_name_info, #current_time, #current_date, #current_weather, #text_hover, #text_date, #text_utc, #text_deheree {
    font-size: 12px;
    padding: 5px;
  }
  
  .avatar_info img {
    height: 100px;
    width: 100px;
  }

  .text_names {
    font-size: 30px;
    font-weight: 500;
  }
  .buttons {
  display: none;
  }
  
.buttons1 {
    gap: 10px;
    width: 100%;
  }

  .button1 {
    width: 150px;
    height: 40px;
  }

  .icon_info, .icon_info1 {
    width: 20px !important;
    height: 20px !important;
  }

  .block_spotify {
    margin-top: 5px;
    margin-left: 15px;
    width: 475px;
    height: 180px;
  }

  .song_cover {
    margin: 15px 10px 0 20px;
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }

  #trackName {
    margin: 15px 10px 0 20px;
    font-size: 16px;
  }

  #artistName {
    font-size: 12px;
  }
 }

 @media (max-width: 450px) {
  .parent {
    display: block;
  }
  
  .left {
    padding: 10px;
  }
  
  .right {
    padding: 10px;
  }
  
  .Block_projects {
    display: inline-block;
    transition: transform 0.5s ease-in-out;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    border-radius: 12px;
    padding: 10px;
    padding-left: 5px;
    margin: 0px 0 0 15px;
    width: 369px;
    height: 215px;
    color: #ffffff
  }

  .Block_projects_info {
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 10px 0 0 10px;
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    color: #ffffff;
    width: 323px;
    height: 125px;
}

.Block_skill {
  transition: transform 0.5s ease-in-out;
  display: inline-block;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 12px;
  padding: 10px;
  padding-left: 15px;
  margin: 15px 0 0 15px;
  width: 360px;
  height: 405px;
  color: #ffffff;
}

.Block_skills {
  display: inline-block;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 10px;
  margin: 10px 10px 10px 10px;
  width: 335px;
  height: 95px;
  color: #ffffff;
}

.description_projects_info {
  font-family: "Fira Code", monospace;
  font-weight: 400;
  font-style: normal;
  color: #818181;
  margin-top: 10px;
  font-size: 16px;
  margin-left: 0px;
}

.text_projects_info {
  margin-top: 10px;
  padding-top: 10rem;
  color: #ffffff;
  padding: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
}

  .Block {
    display: none;
  }
  .Block1 {
    display: none;
  }
  .Block2 {
    display: none;
  }

  .Block_info {
    width: 384px;
    height: 533px;
    margin: 10px 5px;
    padding: 5px;
  }

  .description_info {
    word-wrap: break-word;
    font-size: 15px;
  }

  .text_name, .text_name_info, #current_time, #current_date, #current_weather, #text_hover, #text_date, #text_utc, #text_deheree {
    font-size: 13px;
    padding: 10px;
  }
  
  .avatar_info img {
    height: 100px;
    width: 100px;
  }

  .text_names {
    font-size: 30px;
    font-weight: 500;
  }
  .buttons {
  display: none;
  }
  
.buttons1 {
    display: ruby;
    gap: 10px;
    width: 100%;
  }

  .button1 {
    width: 150px;
    height: 40px;
  }

  .icon_info, .icon_info1 {
    width: 20px !important;
    height: 20px !important;
  }

  .block_spotify {
    margin-top: 12px;
    margin-left: 5px;
    width: 375px;
    height: 190px;
  }

  .song_cover {
    margin: 15px 10px 0 20px;
    width: 90px;
    height: 90px;
    margin-right: 10px;
  }

  #trackName {
    margin: 15px 10px 0 20px;
    font-size: 16px;
  }

  #artistName {
    font-size: 14px;
  }
 }

 @media (max-width: 390px) {
  .parent {
    display: block;
  }
  
  .left {
    padding: 10px;
  }
  
  .right {
    padding: 10px;
  }
  
  .Block_projects {
    display: inline-block;
    transition: transform 0.5s ease-in-out;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 0px 0 0 0px;
    width: 300px;
    height: 180px;
    color: #ffffff
  }

  .Block_projects_info {
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 20px 0 0 0;
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    color: #ffffff;
    width: 270px;
    height: 95px;
}

.Block_skill {
  transition: transform 0.5s ease-in-out;
  display: inline-block;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 12px;
  padding: 10px;
  padding-left: 15px;
  margin: 15px 0 0 0px;
  width: 300px;
  height: 410px;
  color: #ffffff;
}

.Block_skills {
  display: inline-block;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 10px;
  margin: 10px 0px 10px 0px;
  width: 290px;
  height: 100px;
  color: #ffffff;
}

.description_projects_info {
  font-family: "Fira Code", monospace;
  font-weight: 400;
  font-style: normal;
  color: #818181;
  margin-top: 5px;
  font-size: 13px;
  margin-left: 1px;
}

.text_projects_info {
  margin-top: 10px;
  padding-top: 10rem;
  color: #ffffff;
  padding: 7px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
}

.text_skill {
  padding-left: 5px;
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  margin: 15px 10px;
  font-size: 10px;
  text-align: center;
  display: flex;
  justify-content: left;
  align-items: center;
}

.icon_skill_info {
  width: 20px !important;
  height: 20px !important;
  margin-right: 12px;
  margin-top: 0px;
  filter: grayscale(100%);
}

.text_skill_processing {
  padding-left: 37px;
  white-space: nowrap;
  width: 7px;
  height: 12px;
  font-family: "Fira Code", monospace;
  font-weight: 100;
  font-size: 11px;
  font-style: normal;
  color: #26dcca;
}
  .Block {
    display: none;
  }
  .Block1 {
    display: none;
  }
  .Block2 {
    display: none;
  }

  .Block_info {
    width: 320px;
    height: 479px;
    margin: 10px 5px;
    padding: 5px;
  }

  .description_info {
    word-wrap: break-word;
    font-size: 14px;
  }

  .text_name, .text_name_info, #current_time, #current_date, #current_weather, #text_hover, #text_date, #text_utc, #text_deheree {
    font-size: 12px;
    padding: 5px;
  }
  
  .avatar_info img {
    height: 90px;
    width: 90px;
  }

  .text_names {
    font-size: 25px;
    font-weight: 500;
  }
  .buttons {
  display: none;
  }
  
.buttons1 {
    gap: 5px;
    width: 100%;
  }

  .button1 {
    margin: 15px 10px 0 0;
    width: 140px;
    height: 35px;
  }

  .icon_info, .icon_info1 {
    width: 20px !important;
    height: 20px !important;
  }

  .block_spotify {
    width: 310px;
    height: 180px;
  }

  .song_cover {
    margin: 15px 10px 0 20px;
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }

  #trackName {
    margin: 15px 10px 0 20px;
    font-size: 14px;
  }

  #artistName {
    font-size: 12px;
  }
 }

 @media (max-width: 360px) {
  .Block {
    display: none;
  }
  .Block1 {
    display: none;
  }
  .Block2 {
    display: none;
  }

  .Block_info {
    width: 295px;
    height: 440px;
    margin: 10px 5px;
    padding: 12px;
  }

  .description_info {
    font-weight: 400;
    word-wrap: break-word;
    font-size: 12px;
  }

  .text_name, .text_name_info, #current_time, #current_date, #current_weather, #text_hover, #text_date, #text_utc, #text_deheree {
    font-size: 11px;
    padding: 5px;
  }
  
  .avatar_info img {
    height: 60px;
    width: 60px;
  }

  #text_hi {
    font-size: 18px;
  }

  .text_names {
    font-size: 25px;
    font-weight: 500;
  }
  
  .buttons {
  display: none;
  }
  
  .button1 {
    font-size: 14px;
    margin: 10px 0;
    height: 42px;
  }

  .icon_info, .icon_info1 {
    width: 20px !important;
    height: 20px !important;
  }

  .block_spotify {
    margin: 5px 0 0 2px;
    width: 303px;
    height: 150px;
  }

  .song_cover {
    margin: 0 0 0 5px;
    width: 70px;
    height: 70px;
    border-radius: 13px;
    margin-right: 6px;
  }

  #trackName {
    margin: 1px 10px 0 20px;
    font-size: 14px;
  }

  #artistName {
    font-size: 11px;
  }
 }

 @media (max-width: 340px) {
  .parent {
    display: block;
  }
  
  .left {
    padding: 10px;
  }
  
  .right {
    padding: 10px;
  }
  
  .Block_projects {
    display: inline-block;
    transition: transform 0.5s ease-in-out;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 0px 0 0 0px;
    width: 200px;
    height: 200px;
    color: #ffffff
  }

  .Block_projects_info {
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 20px 0 0 0;
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    color: #ffffff;
    width: 221px;
    height: 115px;
}

.Block_skill {
  transition: transform 0.5s ease-in-out;
  display: inline-block;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 12px;
  padding: 10px;
  padding-left: 15px;
  margin: 15px 0 0 0px;
  width: 250px;
  height: 393px;
  color: #ffffff;
}

.Block_skills {
  display: inline-block;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 10px;
  margin: 10px 0px 10px 0px;
  width: 240px;
  height: 100px;
  color: #ffffff;
}

.description_projects_info {
  font-family: "Fira Code", monospace;
  font-weight: 400;
  font-style: normal;
  color: #818181;
  margin-top: 5px;
  font-size: 13px;
  margin-left: 1px;
}

.text_projects_info {
  margin-top: 10px;
  padding-top: 10rem;
  color: #ffffff;
  padding: 7px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
}

.text_skill {
  padding-left: 5px;
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  margin: 15px 10px;
  font-size: 10px;
  text-align: center;
  display: flex;
  justify-content: left;
  align-items: center;
}

.icon_skill_info {
  width: 20px !important;
  height: 20px !important;
  margin-right: 8px;
  margin-top: 8px;
  filter: grayscale(100%);
}

.text_skill_processing {
  padding-left: 37px;
  white-space: nowrap;
  width: 7px;
  height: 12px;
  font-family: "Fira Code", monospace;
  font-weight: 100;
  font-size: 11px;
  font-style: normal;
  color: #26dcca;
}

  .Block {
    display: none;
  }
  .Block1 {
    display: none;
  }
  .Block2 {
    display: none;
  }

  .Block_info {
    width: 270px;
    height: 570px;
    padding: 5px;
  }

  .avatar_info {
    padding: 10px 10px 0;
    margin-top: -3px;
  }

  .description_info {
    margin-left: 10px;
    font-weight: 400;
    word-wrap: break-word;
    font-size: 11px;
    margin-bottom: 20px;
  }

  .text_name, .text_name_info, #current_time, #current_date, #current_weather, #text_hover, #text_date, #text_utc, #text_deheree {
    font-size: 10px;
    padding: 10px;
  }
  
  .avatar_info img {
    height: 50px;
    width: 50px;
  }

  #text_hi {
    font-size: 17px;
  }

  .text_names {
    font-size: 21px;
    font-weight: 500;
  }
  
  .buttons {
  display: none;
  }
  
  .button1 {
    font-size: 14px;
    margin: 10px 0;
    height: 42px;
    width: 90%;
    margin-left: 10px;
  }

  .icon_info, .icon_info1 {
    width: 15px !important;
    height: 15px !important;
  }

  .block_spotify {
    margin: 5px 0 0 px;
    width: 264px;
    height: 130px;
  }

  .song_cover {
    margin: 0px 0 0 6px;
    width: 60px;
    height: 60px;
    border-radius: 9px;
    margin-right: 13px;
  }

  #trackName {
    margin: 1px 10px 0 20px;
    font-size: 10px;
  }

  #artistName {
    font-size: 10px;
  }
 }

 @media (max-width: 320px) {

  .parent {
    display: block;
  }
  
  .left {
    padding: 10px;
  }
  
  .right {
    padding: 10px;
  }
  
  .Block_projects {
    display: inline-block;
    transition: transform 0.5s ease-in-out;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 0px 0 0 0px;
    width: 250px;
    height: 200px;
    color: #ffffff
  }

  .Block_projects_info {
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
    border-radius: 12px;
    padding: 10px;
    padding-left: 15px;
    margin: 20px 0 0 0;
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 2px solid rgba(60, 60, 60, 0.101);
    background-color: rgb(11, 11, 11);
    color: #ffffff;
    width: 221px;
    height: 115px;
}

.Block_skill {
  transition: transform 0.5s ease-in-out;
  display: inline-block;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11, 11, 11);
  border-radius: 12px;
  padding: 10px;
  padding-left: 15px;
  margin: 15px 0 0 0px;
  width: 250px;
  height: 393px;
  color: #ffffff;
}

.Block_skills {
  display: inline-block;
  border: 2px solid rgba(60, 60, 60, 0.101);
  background-color: rgb(11 11 11 / 0%);
  border-radius: 10px;
  margin: 10px 0px 10px 0px;
  width: 240px;
  height: 100px;
  color: #ffffff;
}

.description_projects_info {
  font-family: "Fira Code", monospace;
  font-weight: 400;
  font-style: normal;
  color: #818181;
  margin-top: 5px;
  font-size: 13px;
  margin-left: 1px;
}

.text_projects_info {
  margin-top: 10px;
  padding-top: 10rem;
  color: #ffffff;
  padding: 7px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
}

.text_skill {
  padding-left: 5px;
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  margin: 15px 10px;
  font-size: 10px;
  text-align: center;
  display: flex;
  justify-content: left;
  align-items: center;
}

.icon_skill_info {
  width: 20px !important;
  height: 20px !important;
  margin-right: 8px;
  margin-top: 8px;
  filter: grayscale(100%);
}

.text_skill_processing {
  padding-left: 51px;
  white-space: nowrap;
  width: 7px;
  height: 15px;
  font-family: "Fira Code", monospace;
  font-weight: 100;
  font-size: 13px;
  font-style: normal;
  color: #26dcca;
}

#skill_processing {
  width: 7px;
  height: 7px;
  background-color: #26dcca;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin: 24px 0 0 30px;
  text-align: center;
  box-shadow: 0 0 50px 4px #26dcca, 0 0 50px 10px #26dccac7, 0 0 50px #26dcca, 0 0 900px 15px #00ffe68c;
}
#skill_active {
  width: 7px;
  height: 7px;
  background-color: #3edc26;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin: 23px 0 0 30px;
  text-align: center;
  box-shadow: 0px 0px 50px 0px #5bff43, 0 0 50px 4px #22ff00, 0 0 50px #22ff0000, 0 0 90px 11px #3edc26;
}

  .Block {
    display: none;
  }
  .Block1 {
    display: none;
  }
  .Block2 {
    display: none;
  }

  .Block_info {
    width: 255px;
    height: 510px;
    padding: 5px;
  }

  .avatar_info {
    padding: 10px 4px 0;
    margin-top: -3px;
  }

  .description_info {
    margin-left: 5px;
    font-weight: 400;
    word-wrap: break-word;
    font-size: 10px;
  }

  .text_name, .text_name_info, #current_time, #current_date, #current_weather, #text_hover, #text_date, #text_utc, #text_deheree {
    font-size: 11px;
    margin-top: 1px;
    padding: 5px;
  }
  
  .avatar_info img {
    height: 40px;
    width: 40px;
  }

  #text_hi {
    font-size: 18px;
  }

  .text_names {
    font-size: 20px;
    font-weight: 500;
  }
  
  .buttons {
  display: none;
  }
  
  .button1 {
    font-size: 14px;
    margin: 10px 0;
    height: 42px;
    margin-left: 10px;
  }

  .icon_info, .icon_info1 {
    width: 23px !important;
    height: 16px !important;
  }

  .block_spotify {
    margin: 5px 0 0 0px;
    width: 250px;
    height: 155px;
  }

  .song_cover {
    margin: 3px 0 0 8px;
    width: 75px;
    height: 75px;
    border-radius: 14px;
    margin-right: 12px;
  }

  #trackName {
    margin: 1px 10px 0 20px;
    font-size: 15px;
  }

  #artistName {
    font-size: 12px;
  }
 }

@media (max-width: 992px) {
  #progressContainer {
    margin: 17px 10px 0 20px;
    width: 659px;
  }
 }
@media (max-width: 768px) {
  #progressBar {
    background-color: #8f8f8f;
    height: 100%;
    width: 0;
  }
}

@media (max-width: 700px) {
  #progressContainer {
  margin: 35px 10px 0 20px;
  width: 573px;
}

#timeInfo {
  font-size: 15px;
}
}

@media (max-width: 650px) {
  #progressContainer {
  margin: 35px 10px 0 20px;
  width: 500px;
}

#timeInfo {
  font-size: 15px;
}
}

@media (max-width: 576px) {
    #progressContainer {
    margin: 19px 10px 0 20px;
    width: 400px;
  }
  
  #timeInfo {
    font-size: 15px;
  }
}

@media (max-width: 450px) {
  #progressContainer {
  margin: 27px 10px 0 20px;
  width: 285px;
}

#timeInfo {
  margin-top: 10px;
  margin-left: 100px;
  font-size: 11px;
}
}


@media (max-width: 380px) {
  #progressContainer {
    margin: 16px 10px 0 20px;
    width: 280px;
  }
  #timeInfo {
    margin-left: 27px;
    font-size: 11px;
  }
 }

 @media (max-width: 360px) {
  #progressContainer {
    margin: 21px 0 0 4px;
    width: 290px;
    height: 6px;
  }

  #timeInfo {
    margin-left: 60px;
    font-size: 10px;
  }
 }

 
 @media (max-width: 340px) {
  #progressContainer {
    width: 255px;
    height: 6px;
  }

  #timeInfo {
    margin-left: 60px;
    font-size: 10px;
  }
 }

 @media (max-width: 320px) {
  #progressContainer {
    width: 248px;
    height: 6px;
    margin: 26px 0 0 0;
  }

  #timeInfo {
    margin-left: 10px;
    font-size: 12px;
  }
 }
