body {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 16px;
    font-family: 'Rubik';
    background: #f7f7f7;
    height: 100vh;
    width: 100%;
}

a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

a:hover {
    color: #107ec1;
    text-decoration: underline;
}
a:active {
    color: black;    
}

.container {
    width: 468px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.homeSection {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.logoContent h4 {
    margin-top: 0;
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
}

.logoContent img {
    height: 80px;
}

.logoContent {
    text-align: center;
    margin-bottom: 30px;
}

.footer {
    text-align: center;
    margin-top: 35px;
    font-size: 14px;
    font-weight: 400;
}

.textContent{
    text-align: center;
    margin-bottom: 35px;
    font-size: 14px;
    font-weight: 300;
}

.buttonList ul {
    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    grid-row-gap: 25px;
}

.buttonList li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    transition: .3s;
    font-weight: 500;
    position: relative;
    background: #111;
}

.buttonList li a:before {
    content: '';
    background: linear-gradient(45deg, #1f3d8b, #107ec1, #4abaff, #497bff, #00ffd5, #002bff, #7a00ff, #ff00c8);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 50px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.buttonList li a:hover {
    background: transparent;
}
