.btnsubmit {
    background-image: linear-gradient(to right, #F09819 0%, #EDDE5D  51%, #F09819  100%);
    margin: 10px;
    padding: 4px 35px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: #27519b;            
    box-shadow: 0 0 20px #eee;
    border-radius: 30px;
    display: block;
    font-weight: 1000;
    font-size:13px;
    width: 106px;
    border: 0px solid #fff;
    font-family: arial Black;
}
.btnsubmit:hover{
    background-position: right center; /* change the direction of the change here */
    color: #27519b;
    text-decoration: none;
}

         
.btn-grad {
    background-image: linear-gradient(to top, #bd7713 0%, #baae48  51%, #bd7713  100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
  .card {
    width: 90%;
    max-width: 200px; /* Set a maximum width for responsiveness */
    border: 1px solid #ccc;
    margin: 2px auto;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-image: url(images/test.jpg);
    background-size: cover;
    transition: transform 0.5s;
    border-radius:10px;
    font-family: arial ;
}
.card:hover{
    transform: scale(0.97);
}

/* Card header */
.card-header {
    background-color: rgba(0, 0, 0, 0.67);
    color: #fff;
    padding: 5px;
    border-top-right-radius: 10px;
    border-top-left-radius:10px ;
    text-align: center;
    position: relative;
    font-family: arial ;
    font-size: 12px;
    
}
.card-header p {
    padding:0px;
    margin-top: 5px;
    margin-bottom: 5px;
    
}


/* Card content */
.card-content {
    padding: 5px;
}

/* Card footer */
.card-footer {
    background-color: rgb(75, 122, 223,1);
    color: #fff;
    padding: 5px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius:10px ;
    text-align: center;
    position: relative;
    font-size: 12px;
}
.card-footer p{
    margin-top: 1px;
    margin-bottom: 1px;
    font-weight: bold;
    font-family: arial black;
}

body {
  font-family: Arial, sans-serif;
  background: url('') no-repeat;
  background-size: cover;
  height: 100vh;
}

h1 {
  text-align: center;
  font-family: Tahoma, Arial, sans-serif;
  color: #06D85F;
  margin: 80px 0;
}

.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.button {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #06D85F;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 30px;
  border: 1px solid #888;
  width: 70%;
  padding-left: 10px;
  padding-right: 30px;
}

.close {
  color: #fd0000;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  padding-left:10px;
}

button {
  margin: 0px;
  background:transparent;
  border:0px;
  width:100%;
  max-width: 200px;
}


@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}






  
  .boxmodal {
    width: 40%;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    padding: 35px;
    border: 2px solid #fff;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
  }
  
  .buttonmodal {
    font-size: 1em;
    padding: 10px;
    color: #fff;
    border: 2px solid #06D85F;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
  }
  .buttonmodal:hover {
    background: #06D85F;
  }
  
  .overlaymodal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
  }
  .overlaymodal:target {
    visibility: visible;
    opacity: 1;
  }
  
  .popupmodal {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
  }
  
  .popupmodal h2 {
    margin-top: 0;
    color: #ff0000;
    font-family: Tahoma, Arial, sans-serif;
  }
  .popupmodal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #ff0000;
  }
  .popupmodal .close:hover {
    color: #06D85F;
  }
  .popup .content {
    max-height: 30%;
    overflow: auto;
  }
  
  @media screen and (max-width: 700px){
    .box{
      width: 70%;
    }
    .popupmodal{
      width: 70%;
    }
  }