@font-face {
    font-family: 'playfairdisplay'; /* Choose a name for your font family */
    src: url('/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('ttf');
    font-weight: normal; /* Specify the font weight */
    font-style: normal;  /* Specify the font style */
    font-display: swap; /* Recommended for better perceived performance */
}
/* h1,h2,h3 {
    font-family: playfairdisplay, sans-serif;
}  */

body.web-app
{
      margin: 10; 
      height: 100vh;  
      align-items: center; 
      text-align: center;
    }

h1 {
    font-size: 2.5rem;
}

.mainTitle{
    color: #1976D2; 
    text-align: center;
}
.centerFlex {      
    padding: 10px; 
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
}
.box{
    background-color: #ffffff;
    border: solid;
    border-radius: 10px;
    border-color: black; 
}

.jam-btn{
    background-color: #0f172a;
    color: #ffffff;
    margin: 1rem;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
}
.text-container{
    position: relative;
    width: 640px; /* this is teh size of the yt player in 321jam */
    margin: 0 auto;    
}
#textOverlay{
    position: absolute;
    top: 50%;
    left: 50%;
transform: translate(-50%, -50%);
    width: 40vw;
    height:  40vw; 

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.589);
    color: #ffffff;
    font-size: 8rem;
    font-weight: bold; 
    z-index: 5;

    /* animation: pop 0.2s ease-in-out; */
}
.textOverlay-hidden{
    display: none !important;
}

.disabled-section {
    pointer-events: none;
    opacity: 0.5;
    user-select: none;
}
