
  @import url('https://fonts.googleapis.com/css?family=Exo:400,700');
  @import url('https://fonts.cdnfonts.com/css/common-pixel');
  body {
    margin: 0;
    padding: 0;
    background-color: #202020; /* Darkish background color */
    color: #ffffff; /* Text color */
    text-align: center;
    height: 120vh;
    position: relative; /* Required for the ::before pseudo-element */
    overflow-y: auto; /* Hide the overflow of the border animation */
    font-family: 'Share Tech', sans-serif;
  }
  .header {
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 8px;
    transition: transform 0.3s, text-shadow 0.3s;
  }
  .header:hover {
    transform: scale(1.1);
    text-shadow: 0 13px 10px black;
  }
  .title {
    text-align: center;
    padding: 40px 0;
    font-family: 'Exo', sans-serif;
    font-size: 68px;
    color: #333;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
  }
  .card {
    max-width: 750px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    border: 3px #111112;
    overflow: hidden;
    transition: transform 0.5s;
  }
  .card:hover {
    transform: scale(1.1);
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h2 {
    margin: 0;
    font-size: 24px;
    color: #333333;
  }
  
  .card-content p {
    margin: 8px 0;
    color: #666666;
  }
  .card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .card-aboutme {
    color: #333333;
    text-align: left;
  }
  .card-aboutme h3 {
    color: #383a3b;
    letter-spacing: 2.5px;
  }
  .card-aboutme p {
    color: #666666;
  }
  .coding-lang {
    width: 100px;
    height: 30px;
    background-color: #e6e6e6;
    border-radius: 5px;
    padding: 3px 6px;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-family: Bold-Arial, sans-serif;
    display: inline-block;
  }
  a {
    text-decoration: none;
    color: darkgrey;
    font-family: Impact, sans-serif;
  }
  a:hover {
    color: grey;
  }
  il {
    color: black;
  }
  .button {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #7289d9;
    color: #ffffff;
    border: 2px solid #7289d9;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
  }
.button i {
  margin-right: 10px;
}
  .button:hover {
    transform: scale(1.05);
    border-color: skyblue;
  }
  .sec-card {
    max-width: 400px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    border: 3px #111112;
    overflow: hidden;
    margin-top: 5%;
    margin-bottom: 5%;
    transition: transform 0.5s;
  }
  .sec-card:hover{
    transform: scale(1.1);
  }
  .sec-card h3 {
    color: #383a3b;
    letter-spacing: 2.5px;
    text-align: center;
  }
  .sec-card p {
    margin: 8px 0;
    color: #666666;
  }
  .sec-card h4 {
    color: #2a2a2b;
    letter-spacing: 0.5px;
    text-align: left;
    margin-left: 10px;
  }
#playPauseButton {
  font-size: 16px;
  padding: 10px 20px;
  background-color: #292929;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 120px;
  position: fixed;
  bottom: 20px;
  font-family: 'Common Pixel', sans-serif;
  right: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

#playPauseButton:hover {
  background-color: #292929;
  box-shadow: 0 0 8px #636363;
  transform: scale(1.1);
}
.footer {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  letter-spacing: 0.8px;
  color: #dcfffd;
  transition: text-shadow 0.4s;
}
.footer:hover {
  text-shadow: 0 0 7px #636363;
}