@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    height: auto;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(#DD068A, white);
}

.logo img {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.text__container {
    width: auto;
    max-width: 600px;
    height: auto;
    margin: 50px;
    padding: 30px;
    align-items: center;
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.308), rgba(255, 255, 255, 0.13));
    background-color: rgba();
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text__container h2 {
    text-align: center;
}

.bugs {
    font-size: 1.3rem;
    margin: -20px;
    font-weight: 600;
    text-align: center;
}

.whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right top, #45ffa5, #007e49);
    background-size: 300% 300%;
    animation: gradientMove 4s ease infinite;
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

@keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}
  
.whatsapp:hover {
    transform: scale(1.05);
}
  
.icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.box strong {
    margin: 40px;
}

.instagram {
    padding: 50px;
}

.instagram a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: black;
}

.instagram img {
    width: 20px;
    height: 20px;
}