* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --x: 45deg;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #000, #333);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    text-align: center;
  }
  
  .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  h1 {
    color: #fff;
    margin-bottom: 30px;
  }
  
  .description {
    color: #ccc;
    margin: 20px 0;
  }
  
  .button-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .styled-button {
    position: relative;
    width: 150px;
    height: 55px;
    display: inline-block;
    border-radius: 5px;
  }
  
  .styled-button i {
    position: absolute;
    inset: -2px;
    display: block;
    border-radius: 5px;
  }
  
  .styled-button i,
  .styled-button i:nth-child(2) {
    background: linear-gradient(var(--x), #ff6600, #333, #333, #6699ff);
  }
  
  .styled-button i:nth-child(2) {
    filter: blur(10px);
  }
  
  .styled-button span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    border: 1px solid #222;
    border-radius: 3px;
    background-color: rgba(51, 51, 51,.65);
    overflow: hidden;
  }
  
  .styled-button span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255,.075);
    transform: skew(25deg);
  }
  
  @media (max-width: 768px) {
   .styled-button {
      width: 120px;
      height: 45px;
    }
  }