.container {
    max-width: 600px;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
  }
  .hero {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero h1 {
    font-weight: bolder;
    font-size: 64px;
  }
  .spotify-button {
        display: inline-block;
        background-color: #1DB954;
        color: #fff;
        border: none;
        border-radius: 30px;
        padding: 12px 24px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.2s ease-in-out;
    }
    
    .spotify-button:hover {
        transform: translateY(-2px);
        box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
    }
    
    .spotify-button:active {
        transform: translateY(0px);
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .margin-top {
        margin-top: 20px;
    }