@import url("https://fonts.googleapis.com/css2?family=Caesar+Dressing&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Caesar Dressing", cursive;
    width: 100vw;
    height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(-45deg, #010101, #111111, #584e15, #cdb52e, #cdb52e, #584e15, #111111, #010101);
    background-size: 400% 400%;
    -webkit-animation: Gradient 35s ease infinite;
    -moz-animation: Gradient 35s ease infinite;
    animation: Gradient 35s ease infinite;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

h2 {
    color: #ffffff;
    padding-top: 20px;
    text-align: center;
    letter-spacing: 4px;
}

h1,
h6 {
    font-family: "Open Sans";
    font-weight: 300;
    text-align: center;
    position: absolute;
    top: 45%;
    right: 0;
    left: 0;
}

.shake {
    animation: shake-animation 4.72s ease infinite;
    transform-origin: 50% 50%;
}

.element {
    margin: 0 auto;
    width: 150px;
    height: 150px;
    background: red;
}

@keyframes shake-animation {
    0% {
        transform: translate(0, 0);
    }
    1.78571% {
        transform: translate(5px, 0);
    }
    3.57143% {
        transform: translate(0, 0);
    }
    5.35714% {
        transform: translate(5px, 0);
    }
    7.14286% {
        transform: translate(0, 0);
    }
    8.92857% {
        transform: translate(5px, 0);
    }
    10.71429% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}

.banner {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.banner img {
    width: 80vw;
    height: 40vh;
}

.text-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.backdrop {
    -moz-box-shadow: 0px 6px 5px #111;
    -webkit-box-shadow: 0px 6px 5px #111;
    box-shadow: 0px 2px 10px #111;
    -moz-border-radius: 190px;
    -webkit-border-radius: 190px;
    border-radius: 190px;
}

.linktree {
    width: 120px;
    height: 120px;
    background-image: url("./yayrin-perfil.png");
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.container {
    display: flex;
    flex-direction: column;
}

.container.links {
    margin: 25px;
}

.btn {
    color: #010101;
    cursor: pointer;
    letter-spacing: 0.1rem;
    overflow: hidden;
    padding: 1em 5em;
    margin-bottom: 1em;
    text-transform: uppercase;
    z-index: 1;
}

.btn {
    background-color: #cdb52e;
    transition: background-color 0.4s ease;
}

.btn {
    -moz-box-shadow: inset 0px 2px 1px #111;
    -webkit-box-shadow: inset 0px 2px 1px #111;
    box-shadow: inset 0px 1px 5px #111;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

@media (max-width: 600px) {
    .btn {
        color: #010101;
        cursor: pointer;
        letter-spacing: 0.1rem;
        overflow: hidden;
        padding: 0.5em;
        margin-bottom: 1em;
        text-transform: uppercase;
        font-size: 0.9em;
        text-align: center;
        display: flex;
        flex-direction: row;
        z-index: 1;
    }
    .btn::before {
        align-self: center;
        justify-self: center;
        content: "";
        display: block;
        height: 20px;
        width: 40px;
        margin-right: 5px;
        z-index: 1;
    }
    .w-app::before {
        background: url("./whatsapp.svg") center/contain no-repeat;
    }
    .i-gram::before {
        background: url("./instagram.svg") center/contain no-repeat;
    }
    .y-tube::before {
        background: url("./youtube.svg") center/contain no-repeat;
    }
    .f-book::before {
        background: url("./facebook.svg") center/contain no-repeat;
    }
    /*   .w-app .social-icon  {
    background: url("./whatsapp.svg") center/contain no-repeat;
  }
  .i-gram .social-icon  {
    background: url("./instagram.svg") center/contain no-repeat;
  }
  .y-tube .social-icon  {
    background: url("./youtube.svg") center/contain no-repeat;
  }
  .f-book .social-icon {
    background: url("./facebook.svg") center/contain no-repeat;
  } */
}

@media (min-width: 600px) {
    .btn {
        color: #010101;
        cursor: pointer;
        letter-spacing: 0.1rem;
        overflow: hidden;
        padding: 1em 5em;
        margin-bottom: 1em;
        text-transform: uppercase;
        position: relative;
        z-index: 1;
    }
    .btn::before,
    .btn::after {
        content: "";
        display: block;
        height: 40px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        z-index: 1;
    }
    .w-app::before,
    .w-app::after {
        background: url("./whatsapp.svg") center/contain no-repeat;
    }
    .i-gram::before,
    .i-gram::after {
        background: url("./instagram.svg") center/contain no-repeat;
    }
    .y-tube::before,
    .y-tube::after {
        background: url("./youtube.svg") center/contain no-repeat;
    }
    .f-book::before,
    .f-book::after {
        background: url("./facebook.svg") center/contain no-repeat;
    }
    .btn::before {
        left: 20px;
        transform: translate(calc(-100% - 20px), -50%);
        transition: transform 0.2s ease;
    }
    .btn::after {
        right: 20px;
        transition: transform 0.2s ease 0.1s;
    }
    .btn:hover {
        background-color: #9c8b26;
    }
    .btn:hover::before {
        transform: translate(0, -50%);
        transition: transform 0.2s ease 0.1s;
    }
    .btn:hover::after {
        transform: translate(calc(100% + 20px), -50%);
        transition: transform 0.2s ease;
    }
}