@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

h1 {
    font-family: 'Bebas Neue';
    font-size: 50px;
    border : solid 2px;
    border-radius : 10px;
    padding : 30px;
    margin : 20px;
    background : rgb(106, 224, 42);
    text-align : center;
  }

h2 {
    text-align : center;
    font-family : 'Bebas Neue';
}
body {
    background : rgb(225, 55, 200);
}
p {
    font-family: 'Bebas Neue';
    border : solid 2px;
    border-radius : 10px;
    padding : 30px;
    margin : 20px;
    background : rgb(106, 224, 42);
    text-align : center;
    font-size: 70px;
}

a {
    font-family: 'Bebas Neue';
    font-size: 50px;
    text-align : center;
    color: black;
  }


h3 {
    text-align : center;
    font-family: 'Bebas Neue';
    font-size: 20px;
}

.terms {
        font-family: 'Bebas Neue';
        border : solid 2px;
        border-radius : 10px;
        padding : 30px;
        margin : 20px;
        background : rgb(106, 224, 42);
        text-align : center;
        font-size: 70px;
        display: block;
        color: rgb(0, 0, 0);
        text-decoration: none;
        

}
@media (max-width: 768px) {
  h1 { font-size: 50px; }
  h2 { font-size: 30px; }
  p, .word-of-the-day, a {
    font-size: 30px;
    padding: 15px;
  }
  
  /* Hide main terms section on mobile to avoid duplication */
  .terms {
    display: none;
  }
  
  /* Ensure mobile terms menu is visible */
  .mobile-terms-menu {
    display: block;
  }
}
