body{
  background-color: #F04F27;
  overflow-x: hidden;
/*  overflow-y: hidden;*/
}

.title{
  width: 926px;
  height: 768px;
  flex-shrink: 0;
  background: url('hand.svg');
  display: flex;
  transform: translate(40px, 40px);
  align-items: center;
  margin: 0;
}

.right{
  color: black;
  text-align: right;
  font-family: Helvetica, sans-serif;
  font-style: normal;
  line-height: normal;
  margin-right: 56px;
}

.section1{
  color: black;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-top: -725px;
  transition: color 0.1s ease;
}
.section1:hover{
  color: white;
}

.section2{
  color: black;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-top: 161.5px;
  transition: color 0.1s ease;
}
.section2:hover{
  color: white;
}

.plus{
  color: black;
  font-size: 77px;
  font-weight: 400;
  letter-spacing: -1.64px;
  margin-top: 320px;
  transition: color 0.1s ease;
  cursor: pointer;
}
.plus:hover{
  color: white;
}
/*------------------------------------------------------------*/

.popup-container {
  text-align: center;
  margin-top: 100px;
}

.popup-trigger {
  font-size: 18px;
  padding: 10px 10px;
  cursor: pointer;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
}

/* Popup Box Styling */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 160px;
  background: white;
  border: 2px solid #333;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  padding: 30px;
  z-index: 1000;
}

p{
  font-size: 18px;
  margin-top: 8.5px;
}

.hidden {
  display: none;
}

.popup-content {
  position: relative;
  font-family: Helvetica, sans-serif;
  color: #333;
  text-align: left;
}

/* Close Button Styling */
.close-btn {
  position: absolute;
  top: -23px;
  right: -8px;
  background: none;
  border: none;
  font-size: 18px;
  color: black;
  cursor: pointer;
}

.close-btn:hover {
  color: #F04F27;
}

a{
  text-decoration: none;
  color: black;
}

a:hover{
  color: white;
}












