@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;700&display=swap");

:root {
    --primary-color: #e30020;
    --secondary-color: #e0ec05;
    --success-color: #258616;
    --warning-color: #000000;
    --danger-color: #3ddc84;
    --light-color: #ffffff;
    --background-color: #d0272c;
}

html,
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: black;
    font-size: 10px;
    font-family: "Montserrat", sans-serif;
    height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--light-color);
    font-weight: 500;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
}

a {
    text-decoration: none;
    color: var(--light-color);
    transition: all 0.4s ease;
    font-size: 1.6rem;
}

img {
    width: 150%;
}

p {
    color: var(--light-color);
    margin: 0;
    padding: 0;
}

.animated-button {
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: rgb(0, 0, 0);
    background-color: #f7ef11;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.animated-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
    border-radius: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.animated-button:hover::before {
    width: 0;
    height: 0;
}

.animated-button:hover {
    background-color: #505800;
    box-shadow: 0 0 20px rgba(4, 3, 3, 0.7);
}

.animated-button i {
    position: relative;
    z-index: 1;
}


.btn-danger,
.btn-warning {
    cursor: pointer;
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    color: #fff;
    background: #b00000;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.4);
    animation: breathingGlow 3s ease-in-out infinite;
}

@keyframes breathingGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    }
}

.btn-danger,
.btn-warning {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    color: #fff;
    background: #b00000;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.4);
    animation: breathingGlow 3s ease-in-out infinite;
}

@keyframes breathingGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    }
}

.btn-danger::before,
.btn-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: skewX(-20deg);
    z-index: -1;
    transition: left 0.5s;
}

.btn-danger:hover::before,
.btn-warning:hover::before {
    left: 100%;
}

.btn-danger:hover,
.btn-warning:hover {
    transform: scale(1.05);
}

.btn-danger {
    background: linear-gradient(145deg, #d00000, #900000);
}

.btn-warning {
    background: linear-gradient(145deg, #facc15, #eab308);
    color: #222;
    animation: breathingGlowYellow 3s ease-in-out infinite;
}

@keyframes breathingGlowYellow {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }
}


.logo {
    width: 150px;
}

.content {
    width: calc(100% - 60px);
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 1rem 0rem;
}

.text {
    margin-bottom: 1rem;
}

.l-content h1 {
    font-size: 3rem;
}

.r-content img {
    width: 90%;
    z-index: 99;
}

.container {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lines {
    width: 100%;
    height: 45px;
    position: relative;
}

.lines::after,
.lines::before {
    content: "";
    position: absolute;
    margin: auto;
    height: 2px;
    background: yellow;
    width: 45%;
    top: 45%;
}

.lines::after {
    left: 0;
}

.lines::before {
    right: 0;
}

.follow {
    width: 40px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 5rem;
    color: yellow;
}

.social-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.social-content h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.social-media img {
    width: 32px;
    margin: 0 0.8rem;
}

.r-content {
    position: relative;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blob:nth-child(2) {
    filter: blur(50px);
}

.bubbles-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bubbles {
    position: relative;
    display: flex;
}

.bubbles span {
    position: relative;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    margin: 0 4px;
    border-radius: 50%;
    box-shadow: 0 0 0 10px var(--primary-color), 0 0 50px var(--primary-color),
        0 0 100px var(--primary-color);
    animation: animate 15s linear infinite;
    animation-duration: calc(120s / var(--i));
}

.bubbles span:nth-child(even) {
    background: var(--secondary-color);
    box-shadow: 0 0 0 10px var(--secondary-color), 0 0 50px var(--secondary-color),
        0 0 100px var(--secondary-color);
}

@keyframes animate {
    0% {
        transform: translateY(100vh) scale(0);
    }

    100% {
        transform: translateY(-10vh) scale(1);
    }
}

.img-banner {
    height: 600px;
    width: auto;
    animation: bannerUnseen 10s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes bannerUnseen {
    0% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1) translateZ(0px);
        filter: brightness(1) contrast(1);
    }

    20% {
        transform: perspective(1000px) rotateX(10deg) rotateY(15deg) scale(1.1) translateZ(20px);
        filter: brightness(1.2) contrast(1.1);
    }

    40% {
        transform: perspective(1000px) rotateX(-10deg) rotateY(-15deg) scale(0.9) translateZ(-20px);
        filter: brightness(0.8) contrast(0.9);
    }

    60% {
        transform: perspective(1000px) rotateX(5deg) rotateY(-10deg) scale(1.05) translateZ(10px);
        filter: brightness(1.1) contrast(1);
    }

    80% {
        transform: perspective(1000px) rotateX(-5deg) rotateY(10deg) scale(0.95) translateZ(-10px);
        filter: brightness(0.9) contrast(1.05);
    }

    100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1) translateZ(0px);
        filter: brightness(1) contrast(1);
    }
}

@media (max-width: 768px) {
    header {
        margin-bottom: 4rem;
    }

    .img-banner {
        height: 550px;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .l-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .l-content h1 {
        font-size: 1.9rem;
    }

    .follow {
        display: flex;
        width: 20px;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        font-size: 4rem;
        color: var(--primary-color);
        align-items: center;
    }

    .r-content {
        position: relative;
        max-width: 350px;
        min-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .blob {
        position: absolute;
        width: 350px;
        height: 350px;
        top: 30%;
        left: 30%;
        transform: translate(-30%, -30%);
    }
}