*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
/*html,body{*/
/*    display: grid;*/
/*    height: 100%;*/
/*    place-items: center;*/
/*    background: #000;*/
/*    overflow: hidden;*/
/*}*/
.myBtn{
    position: relative;
    height: 60px;
    width: 200px;
    margin: 0 35px;
    border-radius: 50px;
    outline: none;
    border: 2px solid #fff;
    font-size: 20px;
    background: #111;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}
.myBtn:first-child:hover{
    background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
    background-size: 400%;
}
.myBtn:first-child::before{
    content: '';
    position: absolute;
    background: inherit;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: 50px;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s;
  
}
.myBtn:first-child:hover:before{
    opacity: 1;
    z-index: -1;
}
.myBtn:hover{
    z-index: 1;
    animation: glow 8s linear infinite;
}
@keyframes glow{
     0%{
        background-position: 0%;
     }
     100%{
        background-position: 500%;
     }
}
@media (min-width: 412px) and (max-width: 915px){
    .myBtn{
        width: 120px;
        height: 40px;
        font-size: 15px;
    }
}
@media (min-width: 360px) and (max-width: 760px){
    .myBtn{
        width: 120px;
        height: 40px;
        font-size: 15px;
    }
}
@media (min-width: 960px) and (max-width: 1280px){
    .myBtn{
        width: 150px;
        height: 50px;
        font-size: 17px;
    }
}
@media (min-width: 224px) and (max-width: 1200px){
    .myBtn{
        width: 100px;
        height: 35px;
        font-size: 12px;
    }
}
@media (min-width: 200px) and (max-width: 1400px){
    .myBtn{
        width: 100px;
        height: 30px;
        font-size: 12px;
    }
}
@media (min-width: 576px) and (max-width: 1400px){
    .myBtn{
        width: 140px;
        height: 40px;
        font-size: 15px;
    }
}
@media (min-width: 1080px) and (max-width: 1900px){
    .myBtn{
        width: 180px;
        height: 60px;
        font-size: 20px;
    }
}
@media (min-width: 198px) and (max-width: 915px){
    .myBtn{
        width: 90px;
        height: 25px;
        font-size: 10px;
    }
}
@media (min-width: 60px) and (max-width: 196px){
    .myBtn{
        width: 90px;
        height: 25px;
        font-size: 10px;
    }
}
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adjust the margin as needed */
}

.gowilds-pagination {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gowilds-pagination li {
    display: inline-block;
    margin: 0 5px; /* Adjust the margin as needed */
}

.gowilds-pagination a {
    text-decoration: none;
    padding: 5px 10px; /* Adjust the padding as needed */
    border: 1px solid #ccc;
    border-radius: 5px;
}

.gowilds-pagination a.active {
    background-color: #333;
    color: #fff;
}
