body {
  background-image: url('testpress1.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
background-position: center;
    display:flex;
    justify-content: center;
    align-items: center;
    margin:50px auto;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

.button-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
 
}

a {
  text-decoration: none;
}


.btn {     
   display: block;
 background-color: #9787A3;
    background-repeat:no-repeat;
    border: 2px solid white;
    cursor:pointer;
    overflow: hidden;
	padding: 10px 20px;
	color: white;
	text-decoration: none;
	text-align: center;
	border-radius: 10px;
     
}

.popup {
  width: 400px;
  background: #87A1A3;
  border-radius: 6px;
  border: 2px solid white;
  text-align: center;
  padding: 0 30px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  transform: translate(-50%, -50%) scale(0.1);
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
}

.open-popup {
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}

.popupbtn {
  width: 50%;
  padding: 5px;
  background: #87A1A3;
  color: white;
  border: 2px solid white;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
   top: 50%;
  left: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-family: "Trebuchet MS", Helvetica, sans-serif;
    
}

.popup-button {
  display: flex;
  justify-content: center;
  gap: 40px;
 
}


a,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}
