@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #3765b5;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding: 10px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}
 
.home {
    position: fixed; 
    top: 10px; 
    right: 10px;
    width: 60px; 
    height: 46px;
    border: none;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.home img {
    width: 60px; 
    height: 46px;
}
#jams {
  max-width: 1200px;
  width: 100%;
  margin-top:10px;
}
.hero {
  width: 100%;
  max-width: 400px;
  margin: 10px auto 5px;
}
#jams p, #jams h2 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
#jams h2 {
  border-bottom: 1px dashed #ffffff;
  text-transform: uppercase;
}
.playlist {
    margin-bottom:40px;
}
        
@media (max-width: 750px) {
    
  
    
}

