body {
    background-image: url(img/Animated\ Shape.svg);
    font-family: "Ancizar Serif", serif;

}

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

.txt {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 30px;

    >div {
        color: white;
        font-weight: bold;
        font-size: 40px;
        text-decoration: underline;
        text-transform: uppercase;
    }
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 100px;


    .format {
        height: 53px;
        width: 635px;
        display: flex;
        justify-content: center;
        align-items: center;

        .percent {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 25px;
            border-radius: 5px;
        }


        >span {
            &:nth-of-type(1) {
                color: white;
                padding: 10px;
                font-size: 30px;
                color: white;
            }


        }



        .percent {
            width: 435px;
            height: 100%;
            background-color: white;

        }


    }

    div {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;



        .box {
            width: 360px;
            height: 360px;
            border: 2px dashed rgba(255, 255, 255, 0.551);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;

            .shape {
                width: 100%;
                height: 100%;
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
                background: linear-gradient(135deg, #4c00ff 0%, #ff0080 100%);
                box-shadow: -80px 80px rgba(255, 255, 255, 0.099);
            }

            .jingol {
                width: 15px;
                height: 15px;
                background-color: white;
                border: 2px solid black;
                position: absolute;

                &:active {
                    background-color: aqua;
                    scale: 1.2;
                }

                &:nth-of-type(1) {
                    top: 30%;
                    left: -8px;

                }

                &:nth-of-type(2) {
                    top: 30%;
                    right: -8px;

                }

                &:nth-of-type(3) {
                    top: -8px;
                    left: 30%;

                }

                &:nth-of-type(4) {
                    bottom: -8px;
                    left: 30%;

                }

            }
        }

    }

}

.footer {
    width: 100%;
    text-align: center;
    padding: 16px 10px;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
}

.footer a {
    color: white;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    transition: all 0.2s ease;
}

.footer a:hover {
    color: #ff9de1;
    border-bottom-color: transparent;
}