* {
    margin: 0;
    padding: 0;
    list-style: none;
    word-wrap: break-word;

}

a {
    text-decoration: none;
}




body {
    width: 100%;
    height: 100%;
    background: #537f34;
    background-size: cover;
    min-height: 95vh;
    padding-top: 6rem;
}

.main {
    max-width: 550px;
    background: #fff;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    padding-top: 1rem;
}

.logo {
    width: 100px;
    height: 100px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    top: -40px;
    border-radius: 24px;
}

.logo img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.title {
    margin-top: 5rem;
    text-align: center;
    padding: 30px 0;
}

.title h2 {
    font-size: 32px;
    color: #474747;

}

.title p {
    padding-top: 20px;
    font-size: 19px;
    color: #676767;
    font-weight: bolder;

}

.title h3 {
    padding-top: 20px;
    font-size: 19px;
    color: #676767;
    letter-spacing: 2px;
}

.links {
    overflow: hidden;
    padding: 15px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.links ul li {
    list-style: none;
    width: 95%;
    text-align: center;
    padding: 10px 0;
    margin: 0 1.666%;
    float: left;
}

.links ul li a {
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 12px 0;
    font-size: 18px;
    color: #fff;
    margin: 2px;
    border-radius: 34px;
    transition: all .3s ease;
    letter-spacing: 2px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff5a5a, #c42b09, #ce1c2b, #fc2525);
    background-size: 400%;
    position: relative;
    z-index: 1;
    animation: animate 8s linear infinite;
}

.links ul li a:hover {
    animation: animate 8s linear infinite
}

.links ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, #f8922d, #ff2f00, #ffc400, #f8922d);
    background-size: 200%;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
    width: 100%;
    height: 100%
}

.links ul li a:hover:before {
    filter: blur(10px);
    opacity: 1;
    animation: animate 8s linear infinite
}

@keyframes animate {
    0% {
        background-position: 0
    }

    to {
        background-position: 400%
    }
}

.links a:last-child {
    border-right: 0
}

@media screen and (max-width: 550px) {
    .main {
        width: 90%;
    }
}

.tips {
    text-align: center;
    padding: 30px 0 20px;
}