body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333333;
    overflow: hidden;
  }
  
  .container {
    position: relative;
    perspective: 800px;
  }
  
  .name {
    font-family: 'Arial', sans-serif;
    font-size: 4rem;
    color: #CCCCCC;
    position: relative;
    animation: expand-compress 20s infinite alternate;
  }
  
  @keyframes expand-compress {
    0% {
      transform: scale3d(1, 1, 1);
    }
    50% {
      transform: scale3d(1.2, 1.2, 1.2);
    }
    100% {
      transform: scale3d(1, 1, 1);
    }
}

@media (max-width: 600px) {
    .name {
      font-size: 2.5rem;
    }
}