*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
  /* Layer the bg image behind everything */
  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    /* blur & darken: tweak the values to taste */
    filter: blur(2px) brightness(40%);
    z-index: -1;
  }
#app {
  display: flex;
  flex-direction: column;      /* so children stack */
  justify-content: center;     /* vertical centering */
  align-items: center;         /* horizontal centering */
  padding: 1rem;               /* breathing room on small screens */
  box-sizing: border-box;
}
section{
  position: static !important; /* ditch the manual top/left offsets */
  width: clamp(300px, 80vw, 900px);  /* never smaller than 300px, never wider than 900px */
  max-height: 90vh;                  /* so on very tall screens you still scroll */
  overflow-y: auto;                  /* scroll only if the content really overflows */
  margin: 6rem 0;                     /* give a little vertical gap, centered by #app */
  padding: 1rem;    
background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(60px);
    border-radius: 12px;
    box-sizing: border-box;
}
.contact{
    max-height: 100vh;
    padding: 5px;
    text-align: center;
    
}
.container{
    max-width: 800px;
    margin: 0 auto;
}
.container h2{
    font-size: 36px;
    margin-bottom: 40px;
    color: white;
    text-align: center;
}
.contact-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
}
.contact-form{
    text-align: left;
}
.contact-form h3{
    font-size: 24px;
    margin-bottom: 20px;
    margin-left: 80px;
    color: white;
}
.form-group{
    margin-bottom: 20px;
}
input, textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: #f8f9fa;
    color: black;
}
input:focus,
textarea:focus{
    outline: none;
    box-shadow: 0 0 8px #bbb;
}
.butt{
    display: inline-block;
    margin-left: 120px;
    padding: 12px 24px;
    background-color: #207af9f9;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 5px;
}
.butt:hover{
    background-color: #3b8af8f9;
}
.contact-info h3{
    font-size: 24px;
    margin-bottom: 20px;
    margin-left: 80px;
    color: white;
}
.contact-info p{
    margin-bottom: 10px;
    margin-left: 80px;
    color: white;
    padding: 6px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 17px;
}
.contact-info i{
    color: #207af9f9;
    margin-right: 10px;
}
@media  screen and (max-width: 768px) {

    .container{
        padding: 20px;
    }
    
}

@media (max-width: 600px) {
  h2, h3, .butt {
    font-size: 1.1rem;
  }
  input, button, select, textarea {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
}

/* Display user info on bet view */
    #userInfo {
      position: relative;
      width: 270px;
      top: 15px;
      left: 70%;
      right: 20px;
      font-size: 25px;
      color: white;
      background: rgb(51, 50, 50);
      border: 2px solid rgba(255, 255, 255, .2);
      backdrop-filter: blur(60px);
      padding: 5px 10px;
      border-radius: 4px;
    }
    #menu{
      position:absolute;
      color: white;
      top: 20px;
      right: 75px;
      font-size: 15px;
      background: transparent;
      
    }
    @media (max-width: 768px) {
  #userInfo {
    position: static;          /* flow inside #betView flex container */
    margin: 0.5rem auto;       /* center it with breathing room */
    right: auto;
    top: auto;
    font-size: 18px;           /* a bit smaller */
    width: auto;               /* shrink-to-fit content */
    padding: 4px 8px;          /* slightly tighter */
  }
}

/* phone portrait: even smaller text */
@media (max-width: 480px) {
  #userInfo {
    font-size: 16px;
    padding: 3px 6px;
  }
}

.sidebar{
    position: fixed;
    top: 2px;
    right: -250px;
    width: 180px;
    height: 475px;
    z-index: 9999;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(60px);
    transition: all .5s ease;
    display: none;
}
.sidebar header{
    color: white;
    font-size: 22px;
    line-height: 70px;
    text-align: center;
    background: transparent;
    backdrop-filter: blur(60px);
    user-select: none;
}
.sidebar ul a{
    display: block;
    text-decoration: none;
    height: 100%;
    width: 100%;
    line-height: 65px;
    font-size: 20px;
    color: white;
    box-sizing: border-box;
    border-bottom: 1px solid black;
    border-top: 1px solid rgba(
        255, 255, 255, .1);
    transition: .4s;
    padding-left: 30px;
}
.sidebar ul{
    list-style: none;
}
ul li:hover a{
    padding-left: 5px;
}
.sidebar ul a i{
    margin-right: 16px;
}
#check{
    display: none;
}
label #btn, label #cancel{
    position: fixed;
    z-index: 10000;
    background: #042331;
    border-radius: 3px;
    cursor: pointer;
}
label #btn{
    right: 1%;
    top: 10px;
    font-size: 35px;
    color: white;
    padding: 6px 12px;
    transition: all .5s;
}
label #cancel{
    
    right: -195px;
    top: 17px;
    font-size: 30px;
    color: white;
    padding: 4px 9px;
    transition: all .5s ease;
    display: none;
}
#check:checked ~ .sidebar{
    right: 0;
    width: 330px;
    display: inline;
}
#check:checked ~ label #btn{
    right: 250px;
    opacity: 0;
    pointer-events: none;
}
#check:checked ~ label #cancel{
    right: 195px;
    display: inline;
}

