/* ====Tests==== */
.topExperience{
    position: absolute;
    z-index: var(--z-index-topExerience);
    top: 0;
    left: 0;
  }

.popup {
  display: none;
  position: fixed;
  cursor: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: var(--z-index-popup);
}

.popup-content {
  position: absolute;
  
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 10px, 10px, 10px;
  background-color: #fffffff6;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: black; 
}

@media (max-width: 600px) {
  .popup-content {
    width: 90vw;
    max-width: 420px;
    padding: 24px 20px;
    border-radius: 20px;
    box-sizing: border-box;
  }

  .popup-content button {
    width: 100%;
  }

  .popup-content p {
    font-size: 0.95rem;
  }
}


@media screen and (max-width: 1180px) {
  .popup-content {
    padding: 30px;
  }
}


.popup-content p {
  width: 100%;
  padding-bottom: 10px;
  padding-top: 10px;
  color: black;
}

.popup-content button {
  color: black;
  background-color: #e0e0e0;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  width: 50%;
  transition: background-color 0.3s;
}

.popup-content button:hover {
  background-color: #d0d0d0;  
}

button {
  padding: 10px 20px;
  margin: 10px;
}

