 * {
     padding: 0;
     margin: 0;
     box-sizing: border-box;
 }

 body {
     background-color: #000;
     display: flex;
     justify-content: center;
     align-items: center;
     font-family: 'Open Sans', sans-serif;
     padding: 20px 0px;
 }

 .container {
     background-color: #054f7c;
     border: 3px solid transparent;
     border-radius: 15px;
     display: flex;
     flex-direction: column;
     align-items: center;
     box-shadow: rgba(1, 126, 243, 0.4) 0px 7px 29px 0px;
     width: 90%;
     max-width: 400px;
     padding: 20px;
     text-align: center;
     animation: borderGlow 3s infinite linear;
 }

 @keyframes borderGlow {
     0% {
         border-color: #09a1ff;
     }

     50% {
         border-color: #ffd700;
     }

     100% {
         border-color: #09a1ff;
     }
 }

 .container h1 {
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
     font-size: 2.4rem;
     letter-spacing: 1px;
     color: white;
     font-weight: 700;
     margin-bottom: 5px;
 }

 .timer {
     font-size: 2rem;
     font-weight: 900;
     /* color: #00ff99; */
     margin-bottom: 8px;
     background-color: #d0ff00;
     color: #ff0000;
     border-radius: 50px;
 }

 .container h3 {
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
     font-size: 1.5rem;
     color: white;
     font-weight: 600;
     padding-bottom: 8px;
 }

 .container img {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     margin-bottom: 8px;
     border: 3px solid white;
 }

 .container ul {
     list-style: none;
     color: white;
     padding: 0;
     margin-bottom: 20px;
     font-size: 1rem;
     text-align: left;
 }

 .container ul li {
     padding: 4px 0;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .container ul li i {
     color: #00ff99;
 }

 .container ul li b {
     font-weight: 600;
 }

 .cont-img img {
     width: 80%;
     border-radius: 0px;
     height: auto;
 }

 @media (max-width: 700px) {
     body {
         padding: 15px;
     }

     .container {
         width: 100%;
         height: 100%;
         max-width: 100%;
         max-height: 100%;
         overflow-y: auto;
         justify-content: center;
     }

     .container h1 {
         font-size: 2.6rem;
     }

     .container h3 {
         font-size: 1.7rem;
     }
 }


 .btn {
     font-size: 20px;
     overflow: visible;
     margin: 0;
     padding: 0;
     border: 0;
     background: transparent;
     line-height: normal;
     cursor: pointer;
     display: block;
     text-decoration: none;
     text-transform: uppercase;
     padding: 12px 20px;
     background-color: rgb(1, 0, 0);
     color: rgb(255, 255, 255);
     border: 2px solid rgb(255, 255, 255);
     border-radius: 6px;
     margin-bottom: 16px;
     transition: all 0.5s ease;
     animation: buttonAnimation 2s infinite;
     box-shadow: 0 0 10px rgba(9, 161, 255, 0.6), 0 0 20px rgba(9, 161, 255, 0.4);
 }

 .btn-rstr a {
     font-size: 19px;
     overflow: visible;
     margin: 0;
     padding: 0;
     border: 0;
     line-height: normal;
     cursor: pointer;
     display: block;
     text-decoration: none;
     text-transform: uppercase;
     padding: 16px 20px 16px;
     background-color: rgb(255, 0, 0);
     color: rgb(255, 255, 255);
     border: 2px solid rgb(255, 255, 255);
     border-radius: 6px;
     margin-bottom: 16px;
 }

 .btn-rstr a:hover {
     background-color: blue;
 }

 @keyframes buttonAnimation {
     0% {

         background-color: rgb(238, 255, 0);
         color: black;
     }

     25% {

         background-color: rgb(0, 148, 168);
         color: white;
     }

     50% {

         background-color: rgb(0, 0, 0);
         color: white;
     }

     75% {

         background-color: rgb(165, 0, 130);
         color: white;
     }

     100% {

         background-color: rgb(238, 255, 0);
         color: black;
     }
 }