* {
    margin: 0;
    padding: 0;
    bottom: 0;
}

body {
    background: linear-gradient(-45deg, #274c77, #6096ba);
    animation: gradient 15s ease infinite;
    text-align: center;
    flex-direction: column;
    background-size: 400% 400%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.avatar img {
    border-radius: 50%;
    width: 65px;
    height: 65px;
    margin-top: 50px;
}

.avatar p {
    font-family: "poppins";
    font-weight: 300;
    color: rgb(223, 223, 223);
}

.name {
    margin-top: 20px;
    font-family: "poppins";
    text-transform: uppercase;
    color: aliceblue;
    margin-bottom: 20px;
}

button {
    padding: 20px;
    width: 70%;
    border: #73a8e5;
    background: linear-gradient(-45deg, #133c55, #8ecae6);
    background-size: 500%;
    animation: anim-1 10s linear infinite;
    border-radius: 50px;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    opacity: 70%;
}

@keyframes anim-1 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

button h4 {
    font-family: "poppins";
    color: rgb(244 246 248);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button p {
    font-family: "poppins";
    color: rgb(244 246 248);
    font-size: 14px;
}

.icon {
    margin-top: 15px;
}

.footer {
    margin-top: 20px;
    font-family: "poppins";
    text-transform: uppercase;
    color: rgb(244 246 248);
    opacity: 60%;
    font-size: 12px;
    margin-bottom: 10px;
}