﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.shadow-huge {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    color: #F2F2F2;
    padding-top: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index:1000;
}

.huge-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 450px;
    margin: auto;
}

    .huge-modal .close-btn {
        width: fit-content;
        margin-left: auto;
        margin-right: 8px;
        cursor: pointer;
        margin-bottom: -10px;
        position: relative;
        z-index: 3;
    }

        .huge-modal .close-btn img {
            width: 22.61px;
            height: 22.61px;
        }

    .huge-modal .slant-glow {
        width: 100%;
    }

.modal-content {
    position: relative;
    width: 100%;
}

    .modal-content .texts {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 18.84px;
        line-height: 100%;
        letter-spacing: -3%;
        position: absolute;
        top: 35%;
        left: 10%;
        transition: translate(-30%);
        transform: rotate(-10deg);
    }

        .modal-content .texts p {
            line-height: 110%;
        }

    .modal-content .iconic {
        position: absolute;
        left: 0;
        transition: translate(-30%);
        top: 35%;
        width: 46px;
        height: 46px;
    }

        .modal-content .iconic.basket-b {
            top: 50%;
        }

        .modal-content .iconic .red-ball {
            width: 31px;
            height: 31px;
        }

    .modal-content .right-img {
        position: absolute;
        right: 0;
        width: 74px;
        height: 81px;
        top: 20px;
    }

        .modal-content .right-img.naira-red {
            width: 120px;
            right: -25px;
        }

        .modal-content .right-img.football {
            width: 49px;
            height: 50px;
        }

    .modal-content .texts p:nth-child(1) {
        padding-left: 20px;
    }

    .modal-content .texts p:nth-child(2) {
        padding-left: 10px;
    }

    .modal-content .texts .last-p {
        position: relative;
    }

        .modal-content .texts .last-p img {
            width: 38px;
            top: 2px;
            position: absolute;
            right: 40px;
        }

        .modal-content .texts .last-p .naira {
            width: 82px;
            height: 54px;
            top: -10px;
        }

        .modal-content .texts .last-p .purple {
            width: 28px;
            height: 28px;
            right: 60px;
            top: 0;
        }

    .modal-content .texts .avi-red-l {
        color: #00FF00;
        text-shadow: -1px 0 #000000, 0 1px #000000, 1px 0 #000000, 0 -1px #000000;
    }

    .modal-content .light-1 {
        animation: beats 1.5s infinite ease-in-out;
        display: inline-block;
        text-decoration: underline;
        position: absolute;
        top: 40%;
        left: 10px;
    }

    .modal-content .light-2 {
        animation: beats 1.5s infinite ease-in-out;
        display: inline-block;
        text-decoration: underline;
        position: absolute;
        top: 30%;
        right: 15px;
    }

    .modal-content .red-1 {
        top: 30%;
        left: 8px;
    }

    .modal-content .red-2, .modal-content .green-2 {
        top: 14%;
        right: 5px;
    }

    .modal-content .green-1 {
        top: 50%;
        left: -5px;
    }

    .modal-content .purple-1 {
        top: 20%;
        left: -5px;
    }

    .modal-content .purple-2 {
        top: 10%;
    }

@keyframes beats {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.55);
        color: red;
    }
}
