* {
    margin: 0;
    padding: 0;
    
}

body, html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

.parallax-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: Montserrat, sans-serif;
    width: 100%;
    min-height: 100vh;
  }
  
  .parallax-item h2 {
    font-size: 3rem;
    text-transform: uppercase;
    background-color: whitesmoke;
    padding: 1rem;
    border-radius: 1rem;
  }
  
  .parallax-item:first-child {
    background: url(images/herbg.jpg);
    background-size: cover;
  }
  
  .parallax-item:nth-child(2) {
    background: #fdd835;
  }
  
  .parallax-item:nth-child(3) {
    background: url("https://lp-cms-production.imgix.net/2019-06/e54a77fabef33b49a1503a00b8a5b15e-furong-zhen-waterfall.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect for DIV 3 */
  }
  
  .parallax-item:nth-child(4) {
    background: #1565c0;
  }

  .parallax-item:nth-child(5) {
    background: url("https://greatbigstory.com/wp-content/uploads/2023/09/Zhangjiajie-National-Forest-Park-avatar4-1-scaled.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect for DIV 3 */

  }
  .parallax-item:nth-child(6) {
    background: #15c040;
  }

  .parallax-item:nth-child(7) {
    background: url("https://windows10spotlight.com/wp-content/uploads/2018/08/aa4ade866c6252ffb605e120e7fb66b4.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect for DIV 3 */
    min-height: 400px;
  }

  .parallax-item:nth-child(8) {
    background: #c0152c;
  }
  
  @media screen and (max-width: 768px) {
    .parallax-item h2 {
      font-size: 1.5rem;
    }
  }
  

nav {
    position: fixed;
    z-index: 9;
    width: 100%;
}

.nav {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 20px;
    border-radius: 5px;
    width: calc(100%-1px);
    height: max-content;
    display: flex;
    padding: 20px;
    background-color: white;
}

.nav-name {
    align-self: flex-end;
    color: black;
    font-weight: 400!important;
    display:table-cell;    /*Add this*/
  vertical-align:middle;
    padding: 20px;
    text-decoration: none;
    color: black;
}

.nav-name h1 {
  display:table-cell;    /*Add this*/
  vertical-align:middle;
}

.nav-links {
  align-self: center;
    margin-left: auto;
    margin-right: 60px;
    display:table-cell;    /*Add this*/
  vertical-align:middle;
    text-decoration: none;
    color: black;
}

.nav-links a {
  display:table-cell;    /*Add this*/
  vertical-align:middle;
    padding: 20px;
    height: 100%;
    text-decoration: none;
    color: black;
}

.hero { 
    width: 100%;
    position: relative;
}

.herobgdiv {
    position: relative;
    height: 100%;
    background-image: url(images/herbg.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
}

.herobgoverlay {
    position: absolute;
    box-shadow: 
        inset 22px 450px 200px -50px #000000,
        inset 22px -450px 2000px -50px #000000; 
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: .6;
    z-index: 1;
}

.herotext {
    font-family: 'Assistant', 'Arial', sans-serif;
    font-style: normal;
    color: #ffffff;
    position: absolute;
    margin:auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center; 
    opacity: 1;
    z-index: 2;
    display: flex;
}

.herotext h1 {
    font-size: 3rem;
}

.flexbreak {
    width: 100%;
}

hr {
    display: flex;
    width: 90%;
    height: 10px;
    border: none;
    border-bottom: 3px solid white;
    margin: auto;
}

.box{
	position: fixed;
	bottom: 8.5vh;
	left: 50%;
	transform: translate(-50%, -50%);
}

.box span{
	display: block;
	width: 20px;
	height: 20px;
	border-bottom: 3px solid white;
	border-right: 3px solid white;
	transform: rotate(45deg);
	margin: -10px;
	animation: animate 2s infinite;
  -webkit-transition: -webkit-transform .3s ease-out;
-moz-transition:    -moz-transform .3s ease-out;
-o-transition:      -o-transform .3s ease-out;
-ms-transition:     -ms-transform .3s ease-out;
transition:         transform .3s ease-out;
}

.box span.bottom {
  -webkit-transition: -webkit-transform .3s ease-out;
-moz-transition:    -moz-transform .3s ease-out;
-o-transition:      -o-transform .3s ease-out;
-ms-transition:     -ms-transform .3s ease-out;
transition:         transform .3s ease-out;
  transform: rotate(225deg);
	margin: -10px;
	animation: animate2 2s infinite;
}

.box span:nth-child(2)
{
	animation-delay: -0.2s;
}

.box span:nth-child(3)
{
	animation-delay: -0.4s;
}

@keyframes animate{
	
	0%{
		opacity: 0;
		transform: rotate(45deg) translate(-30px, -30px);
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: rotate(45deg) translate(30px, 30px);
	}
}

@keyframes animate2{
	
	0%{
		opacity: 0;
		transform: rotate(225deg) translate(-30px, -30px);
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: rotate(225deg) translate(30px, 30px);
	}
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 999;
}

*:hover ~ .cursor {
    transform: scale(6);
    box-shadow: 0 0 10px #fff;
    color: #000;
}

.main {

}

#fbox {
  margin-top: 30px;
  background-color: white;
  border-radius: 5px;
  color: black;
  width: 30%;
  position: absolute;
  left: 80px;
  padding: 150px;
  padding-top: 100px;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

#fbox h1 {
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    margin-bottom: 30px;
    text-align: left;
}

#fbox p {
  text-align: left;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    margin-bottom: 30px;
}

#fbox a {
  text-align: left!important;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    margin-left: 0;
    position: absolute;
    left: 150px;
    text-decoration: none;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px 20px;
    background-color: black;
    border-radius: 5px;
    transition: 0.3s ease;
    border: 2px solid black;
}

#fbox a:hover {
  color: black;
  background: white;
}

#gbox {
  margin-top: 30px;
  background-color: white;
  border-radius: 5px;
  color: black;
  width: 10%;
  height: 100%;
  position: absolute;
  right: 80px;
  z-index: 2;
  padding: 300px;
  padding-top: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

#gbox img {
  flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
  object-fit: cover;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
  position: absolute;
}

#gbox.hovered {
  right: 290px;
}

#gbox img.hovered {
  transform: scale(1.5);
}

.caption {
  color: black;
  background-color: white;
  border-radius: 5px;
  z-index: -2;
  width: 180px;
  right: 200px;
  position: absolute;
  text-align: right!important;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  padding: 40px 20px;
  transition: all 0.3s ease;
  padding-top: 20px;
  margin-top: 2%;
}

.caption h1 {
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.caption p {
  vertical-align: middle;
}

.caption.hovered {
  right: 80px;
}

#fbox2 {
  justify-content: center;
  align-items: center;  
  margin-top: 30px;
  background-color: white;
  border-radius: 5px;
  color: black;
  width: 20%;
  position: absolute;
  right: 80px;
  padding: 100px;
  padding-top: 70px;
  padding-bottom: 8
  0px;
  padding-right: 80px;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    vertical-align: middle;
    z-index: 3;
}

#fbox2 h1 {
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    margin-bottom: 30px;
    text-align: right;
    vertical-align: middle;
}

#fbox2 p {
  vertical-align: middle;
  text-align: right;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    margin-bottom: 30px;
}

#fbox2 a {
  cursor: pointer;
  text-align: right!important;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    margin-left: 0;
    position: absolute;
    right: 80px;
    text-decoration: none;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px 20px;
    background-color: black;
    border-radius: 5px;
    transition: 0.3s ease;
    border: 2px solid black;
    user-select: none;
}

#fbox2 a:hover {
  color: black;
  background: white;
}

.stickout {
  color: black;
  background-color: white;
  border-radius: 5px;
  z-index: -3;
  width: 50%;
  right: 80px;
  position: absolute;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  padding: 50px;
  transition: all 0.3s ease;
  margin-top: 2%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.stickout h1 {
  font-size: 20px;
}

.stickout p {

}

.stickout.shown {
  z-index: 1;
  right: 40%; /* Reset any right positioning */
}

.pfpcontainer {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin: auto;
  
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-top: 20px;
    margin-bottom: 20px;
}

.one {
  background-image: url('images/hongbo.png')
}

.two {
  background-image: url('images/hanyan.jpg')
}

.three {
  background-image: url('images/zhigang.jpg')
}

.four {
  background-image: url('images/hualin.jpg')
}

.five {
  background-image: url('images/shuaizhou.jpg')
}

.aboxcontainer {
  position: relative;
  width: 100%;
  height: 100vh;
}

.abox {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: white;
  border-radius: 5px;
  color: black;
  position: absolute;
  padding: 300px;
  padding-bottom: 100px;
  justify-content: center;
  align-items: center;
  
  transition: all 0.3s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.box1 {
  top: 170px;
  left: 80px;
z-index: 3;
padding: 100px;
padding-top: 60px;
padding-bottom: 40px;
overflow-wrap: break-word;
max-width: 20%;
}

.box2 {
  left: 50%;
  

  /* make the top edge of .inner appear in the vertical center of .outer */
  top: 50%;
 
  /* move .inner up by half of its height so that its middle is in the middle of .outer */
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  background-image: url(images/group.jpg);
  background-position: center;
  background-size: cover;
}

.box3 {
  top: 170px;
  right: 80px;
  z-index: 1;
  background-image: url(images/group2.jpg);
  background-position: center;
  background-size: cover;
}

.abox h1 {
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    margin-bottom: 30px;
    text-align: left;
}

.abox p {
  text-align: left;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    margin-bottom: 30px;
}

.abox a {
  cursor: pointer;
  text-align: left!important;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    margin-left: 0;
    position: absolute;
    left: 100px;
    text-decoration: none;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px 20px;
    background-color: black;
    border-radius: 5px;
    transition: 0.3s ease;
    border: 2px solid black;
    user-select: none;
}

.abox a:hover {
  color: black;
  background: white;
}

.circlecaption {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: white;
  border-radius: 50%;
  color: black;
  position: absolute;
  text-align:center; 
    display:table;
  /* padding: 50px; */
  width: 150px;
  height: 150px;
  justify-content: center;
  align-items: center;
  
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  display: inline-flex;
  /* align-items items in column */
  flex-direction: column;
  /* center items horizontally */
  align-items: center;
  /* center items vertically */
  justify-content: center;

}

.circlecaption h1 {
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    margin: auto;
    text-align: center;
    vertical-align: middle;
    display:table-cell; vertical-align:middle
    
}

.circlecaption p {
  vertical-align: middle;
  text-align: center;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    display:table-cell; vertical-align:middle

}

.cc1 {
  bottom: -60px;
  right: -75px;
  
}

.cc1 h1 {
  margin-top: 50px;
  font-size: 20px;
}

.cc1 p {
  margin-top: 0;
  margin-bottom: 40px;
}

.cc2 {
  bottom: -35%;
  right: 0;
  border-radius: 5px;
  width: 300px;
  z-index: -5;
  height: 120px;
}

.contactbox {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: white;
  border-radius: 5px;
  color: black;
  position: absolute;
  padding: 60px 200px;
  justify-content: center;
  align-items: center;
  
  transition: all 0.3s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.contactbox input, textarea {
  border: 2px solid black;
  padding: 20px;
  margin: 10px 0;
  border-radius: 5px;
}

.contactbox h1 {
  margin-bottom: 30px;
}

.contactbox button {
  cursor: pointer;
  text-align: center!important;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    text-decoration: none;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px 20px;
    background-color: black;
    border-radius: 5px;
    transition: 0.3s ease;
    border: 2px solid black;
}

.contactbox button:hover {
  color: black;
  background-color: white;
}

textarea {
  resize: none;
  max-height: fit-content;
}

.bigbox {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: white;
  border-radius: 5px;
  color: black;
  position: absolute;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  margin: 80px;
  margin-top: 50px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.bigbox a {
  cursor: pointer;
  text-align: center!important;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    text-decoration: none;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px 20px;
    background-color: black;
    border-radius: 5px;
    transition: 0.3s ease;
    border: 2px solid black;
}
.bigbox a:hover {
  color: black;
  background-color: white;
}

.bigbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.textsec {
  padding: 150px;
}

.events {
  padding: 100px;
}

.textsec h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.textsec p {
  margin-bottom: 50px;
}

.img1sec {
  width: 100%;
  height: 100%;
  background:linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(images/image1sec.jpg);
  background-size: cover;
  transition: background 0.3s ease;
}

a {
  user-select: none;
}

.jbox {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: white;
    border-radius: 5px;
    color: black;
    position: absolute;
    padding: 100px;
    width: 30%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    margin: 80px;
    padding-top: 70px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.jbox a {
  cursor: pointer;
  text-align: center!important;
  font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    text-decoration: none;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px 20px;
    background-color: black;
    border-radius: 5px;
    transition: 0.3s ease;
    border: 2px solid black;
    margin-top: 50px;
}

.jbox a:hover {
  color: black;
  background-color: white;
}

.jbox h1 {
  font-size: 35px;
  margin: 30px 0;
}

.jbox h3 {
  font-size: 25px;
  margin: 30px 0;
}

.jbox p {
  font-size: 17px;
  margin: 30px 0;
  margin-bottom: 40px;
}

.parallax-item {
  overflow: hidden;
}

.overlay {
  width: 100vw;
  height: 400px;
  background-color: #000000b0;
}

.namee {
  display: none;
}

#gboxmob {
  display: none;
}

#gboxmobcaption {
  display: none;
}

.membersmobile {
  display: none;
}

@media only screen and (max-width: 1150px) {
  .nav {
    display: none;
  }
  .caption {
    display: none;
  }
  #fbox {
    width: 100%;
    left: 0;
    height: 100vh;
    padding: 0;
    margin-top: 0;
    text-align: center;
    border-radius: 0;
  }
  #fbox h1 {
    text-align: center;
    font-size: 2.3rem;
    margin: 1.8rem;
    margin-top: 1rem;
  }
  #fbox p {
    text-align: center;
    margin: 1.8rem;
    margin-bottom: 2rem;
  }
  #fbox a {
    display: none;
  }
  .namee {
    display: block;
    position: relative;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    padding: 7%;
    font-size: 1.3rem;
  }
  #gbox {
    display: none;
  }
  #gboxmob {
    display: block;
    margin: auto;
    width: 90%;
    border-radius: 5px;
    margin-bottom: 2rem;
  }
  #gboxmobcaption {
    display: block;
  }
  .box1 {
    height: 100vh;
    top: 0;
    left: 0;
    margin: 0;
    position: relative;
    padding: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    border-radius: 0;
  }
  .box1 h1 {
    text-align: center;
    text-align: center;
    font-size: 2.3rem;
    margin: 1.8rem;
    margin-top: 0;
    padding-top: 1rem;
  }
  .box1 a {
    text-align: center;
    position:relative;
    left: 0;
  }
  .box1 p {
    text-align: center;
    text-align: center;
    margin: 1.8rem;
    margin-bottom: 2rem;
  }
  .box2 {
    display: none;
  }
  .box3 {
    display: none;
  }
  .asd {
    margin-top: 3rem!important;
  }
  .membersmobile {
    display: block;
    height: 100vh;
    width: 100%;
    background-color: white;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    text-align: center;
  }
  #fbox2 {
    display: none;
  }
  .stickout {
    display: none;
  }
  .box {
    display: none;
  }
  .persons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .membersmobile p {
    margin: 1rem;
    margin-bottom: 0;
  }
  .person {
    margin: 1rem;
  }
  .pfpcontainer {
    margin-top: 0;
  }
  .img1sec {
    display: none;
  }
  .textsec {
    padding: 0;
    width: 100%;
    margin-top: 5rem;
    text-align: center;
  }
  .textsec p {
    margin: 2rem;
    margin-bottom: 3rem;
  }
  .textsec a {
    margin-bottom: 3rem;
  }
  .bigbox {
    margin: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    display: block;
  }
  .eveng {
    margin-top: 4rem!important;
  }
  .contactbox {
    width: 100%;
    padding: 4rem 0;
    text-align: center;
    height: 100vh;
  }
  .jbox {
    padding: 0;
    text-align: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    border-radius: 0;
  }
  .jbox p {
    margin: 2rem;
    margin-bottom: 4rem;
  }
  .jbox h1 {
    margin-top: 13rem;
  }
  .parallax-item:nth-child(7) {

  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  
}

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  border-radius: 5px;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  padding: 50px;
  font-weight: normal;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.close-btn {
  cursor: pointer;
  color: red;
  font-size: 40px;
  font-family: "Raleway", sans-serif;
}