* {
    font-family: 'Poppins', sans-serif; /* Apply Poppins to all text elements */
    margin: 0;
    padding: 0;
  }

  body{
    background-image: url(images/background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  body,main{width: 100vw;min-height: 100vh;}

  body{margin: 0;padding: 0;}
  .banner {
    width: 100%;
    height: 120vh;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .text-box input#username {
    /* Styles for username input field */
    font-size: 1rem;
    width: 70%;
    height: 10%;
    text-align: left;
    font-weight: light;
    line-height: 1.4em;
    background-color: hsla(0, 0%, 100%, .9);
    border-radius: 8px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    font-size: 16px;
    height: 38px;
    margin: 0;
    box-sizing: border-box;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    -webkit-rtl-ordering: logical;
    cursor: text;
    width: 270px;
    max-width: 270px;
    box-sizing: border-box;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    overflow-y: scroll;
    color: #1f1f1f;
    font-weight: 300;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid #b8b8b8;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .1);
    margin-top: 2%;
  }
  
  .text-box button#next {
    /* Styles for Next button with hover animation */
    color: #f2f4f5;
    background-color: #393b3d;
    border: 0px;
    border-radius: 10px;
    padding: 10px;
    width: 70px;
    font-weight: bolder;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .text-box button#next:hover {
    background-color: rgb(10, 198, 255);
    color: #FFFACD;

  }
  
  .username-display {
    /* Styles for username display box */
    display: none; /* initially hidden */
    max-width: 475px;
    background: #fff;
    position: relative;
    border-radius: 50px;
    color: #333;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.4);
    padding: 30px;
    padding-bottom: 50px;
  }
  
  .username-display p {
    /* Styles for username text inside display box */
    color: #333333;
    font-size: 30px;
    font-weight: 700;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
  }

  #iframe-container { /* For absolute positioning if needed */
    width: 200px; /* Adjust to your desired width */
    height: 200px; /* Adjust to your desired height */
    position: relative;
    right: 190px;
  }

  #FS{
    font-weight: bold;
    color: white;
  }

  #username-display{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: bold;
  }
  #usernameElement{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 28px;
  
  }
  #rtx{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    color: lemonchiffon;
  }

  #cr{
    font-weight: bold;
    color: white;
  }
  @media (max-width: 768px) {
    .text-box input#username {
      width:fit-content;
    }
  
    .text-box button#next {
      width: fit-content; /* Full width for smaller screens */
    }



    
    
}