@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:wght@100;300;400;500;700;900&family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');

@keyframes float {
    from{background-position: 0 0;}
    to{background-position: 100% 100%;}
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, hsla(0, 100%, 97%, 1) 0%, hsla(0, 50%, 70%, 1) 100%);
    background-size: 200% 200%;
    animation: float 6s linear infinite alternate;
}

.container {
    height: auto;
    width: 475px;
    background-color: #fff;
    border-radius: 20px;
    margin: auto;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.imgperfil {
    height: 110px;
    display: flex;
    margin: auto;
}

.buttons {
    margin-top: 22px;
}

button {
    border-style: none;
    background: none;
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin: auto;
    color: black;
}

.links {
    width: 98%;
    height: 50px;
    background-color: #fcfcfc;
    display: flex;
    margin: auto;
    margin-top: 15px;
    border: 1px solid #999;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s ease-in-out 0s;
}
    .links:hover {
        cursor: pointer;
        background-color: #f0f0f0;
        transform: scale(1.03);
    }

.imgbutton {
    height: 36px;
    margin: 7px 0 7px 10px;
}

.grupo-vip {
    border-radius: 50%;
}

.imgcentralizer {
    height: 40px;
    width: 40px;
}

@keyframes vibrate {
    0% {left:-3px; right:-3px;}
    12.5% {left:3px; right:0px;}
    25% {left:-3px; right:3px;}
    37.5% {left:0px; right:-3px;}
    50% {left:0px; right:3px;}
    62.5% {left:3px; right:-3px;}
    75% {left:-3px; right:0px;}
    87.5% {left:3px; right:3px;}
    100% {left:0px; right:3px;}
}

#animate {
    position: relative;
    -webkit-animation: vibrate ease-out 1s infinite;
    animation: vibrate ease-out 1s infinite;
}
    #animate:hover {
        animation: none;
    }

h3 {
    margin: 35px 25px 25px 25px;
    font-size: 17px;
    text-align: center;
    font-weight: 600;
}

.social {
    display: flex;
    justify-content: center;
}

.imgsocial {
    display: flex;
    height: 45px;
    margin: 0 18px;
    transition: .3s ease-in-out 0s;
}
    .imgsocial:hover {
        cursor: pointer;
        transform: scale(1.1);
    }

#inst-logo {
    height: 39px;
    margin-top: 4px;
}

.footer {
    position: fixed;
    bottom: 5px;
    color: #000;
    font-size: 12px;
}

.footer a {
    color: #000 !important;
}

@media (max-width: 500px) and (min-width: 300px) {
    .container {
        width: 90%;
    }
}

@media (orientation: landscape) and (max-width: 700px) {
    .container {
        height: 350px;
    }

    .imgperfil {
        height: 80px;
    }

    .buttons {
        margin-top: 15px;
    }

    h3 {
        margin: 18px 25px 12px 25px;
    }
}