@font-face {
  font-family: "Jalal";
  src: url("../webfonts/Jalal LT Bold.ttf") format("truetype");
}

:root {
  --default-color: #ffffff;
  --gray: #b2b2b2;
  --black:#000000;
}

body {
  font-family: "Jalal", sans-serif;
  background-image: url(../images/bg.png);
  width: 100vw;
  height: 100vh;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: var(--default-color);
}

.conatiner {
  display: flex;
  justify-content: space-between;
}
.img_wrap img {
  width: 100%;
}
button {
  border: none;
  background-color: transparent;
}
.small_head {
  font-size: 1.2rem;
  line-height: 0.8;
  margin-bottom: unset !important;
}
.main_head {
  font-size: 2rem;
  margin-bottom: unset !important;
}
#nameInput {
  width: 300px;
  border-radius: 50px;
  height: 50px;
  border: none;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  text-align: center;
  z-index: 50;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Handle on hover */

#nameInput:focus-visible {
  border: none;

  display: flex;
  justify-content: center;
  outline: none;
  text-align: center;
}
#nameInput::placeholder {
  color: black;
  font-size: 18px;

  letter-spacing: 1px;
  text-align: center;
}
button img {
  width: 50%;
}
#suggestions {
  max-height: 246px;
  padding-top: 20px;
  overflow-y: auto;
  display: none;
  width: 300px;
  background: var(--default-color);
  color: var(--gray);
  /* border-radius: 20px; */
  margin-top: -20px;
  z-index: 10;
}
.suggestion {
  padding: 10px;
  cursor: pointer;
}
.suggestion:hover {
  background: #f0f0f0;
}
#suggestions::-webkit-scrollbar {
  width: 10px;
  border-radius: 10px;
}

/* Handle */
#suggestions::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}




#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

#welcomeModal {
background-color: transparent;
  padding: 30px;
  border-radius: 20px;
  background-image: url(../images/welcome.png);
  background-size: 100% 100%;
  text-align: center;
width: 50%;
height: 35%;
display: flex;
justify-content: space-around;
}
#welcomeText {
  font-size: 20px;
  color:var(--black) ;
 

  background-size: 100% 100%;
  width: 100%;
  height: 100%;
 text-align: center;
 margin-right: 250px;

}