body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    background-color: #F5F5F5;
}

.intro_margin {
    margin-top: 200px;
}

.nav_item {
    letter-spacing: 1.5px;
}

.active {
    color: teal !important;
}

.container-root {
    max-width: 80%;
    margin: 0 auto;
}

.my_nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

#intro {
    background-color: #F5F5F5;
}

.name_color_first {
    color: #6FDB42;
}

.name_color_last {
    color: #4A4A4A;
}

.intro_btn {
    position: relative;
    width: 150px;
    border: 1px solid lightgray;
    padding: 10px 40px;
    font-size: 20px;
    font-weight: 900;
    color: #26a69a;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

.intro_btn::before {
    content: "";
    height: 30px;
    width: 30px;
    position: absolute;
    display: inline-block;
    background-color: teal;
    opacity: 0.5;
    transform: translate(119px);
    z-index: 1;
    border-radius: 50%;
    animation: move_left 5s infinite ease;
    animation-delay: 0.5s;
}

.intro_btn::after {
    content: "";
    height: 10px;
    width: 10px;
    position: absolute;
    display: inline-block;
    background-color: yellow;
    opacity: 0.5;
    transform: translate(-119px);
    z-index: 1;
    border-radius: 50%;
    animation: move_right 5s infinite ease;
    animation-delay: 1s;
}

.intro_span_1 {
    position: absolute;
    height: 15px;
    width: 15px;
    top: -10px;
    left: 30%;
    border-radius: 40%;
    background-color: red;
    opacity: 0.5;
    z-index: 1;
    animation: move_left_2 5s infinite ease;
    animation-delay: 1.5s;

}

.intro_span_2 {
    position: absolute;
    height: 20px;
    width: 20px;
    bottom: -10px;
    left: 70%;
    border-radius: 60%;
    background-color: pink;
    opacity: 0.5;
    animation: move_right_2 5s infinite ease;
    animation-delay: 2s;

    z-index: 1;
}

.intro_span_3 {
    position: absolute;
    height: 25px;
    width: 25px;
    top: -10px;
    left: 80%;
    border-radius: 30%;
    background-color: slategray;
    opacity: 0.5;
    z-index: 1;
    animation: move_left_3 5s infinite ease;
    animation-delay: 2.5s;

}

.intro_span_4 {
    position: absolute;
    height: 13px;
    width: 13px;
    bottom: -10px;
    left: 20%;
    border-radius: 10%;
    background-color: purple;
    opacity: 0.5;
    z-index: 1;
    animation: move_right_3 5s infinite ease;
    animation-delay: 3s;

}

@keyframes move_left {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-50px, 10px);
    }

    50% {
        transform: translate(-40px, -40px);
    }

    60% {
        transform: translate(50px, 30px);
    }

    100% {
        transform: scale(0, 0) scale(6, 6);
    }
}

@keyframes move_right {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(50px, -10px);
    }

    50% {
        transform: translate(-40px, -40px);
    }

    60% {
        transform: translate(-50px, 30px);
    }

    100% {
        transform: scale(0, 0) scale(6, 2);
    }
}

@keyframes move_left_2 {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-40px, 30px);
    }

    50% {
        transform: translate(40px, 40px);
    }

    60% {
        transform: translate(50px, -30px);
    }

    100% {
        transform: scale(0, 0) scale(7, 3);
    }
}

@keyframes move_right_2 {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(60px, -30px);
    }

    50% {
        transform: translate(-50px, -60px);
    }

    60% {
        transform: translate(-60px, 20px);
    }

    100% {
        transform: scale(0, 0) scale(5, 3);
    }
}

@keyframes move_left_3 {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-34px, 70px);
    }

    50% {
        transform: translate(-100px, -20px);
    }

    60% {
        transform: translate(-20px, 60px);
    }

    100% {
        transform: scale(0, 0) scale(3, 5);
    }
}

@keyframes move_right_3 {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-80px, 40px);
    }

    50% {
        transform: translate(50px, 60px);
    }

    60% {
        transform: translate(50px, -90px);
    }

    100% {
        transform: scale(0, 0) scale(5, 3);
    }
}

.img_frame {
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    transition: 0.5s all ease;
}

.my_image {
    position: absolute;
    top: 22%;
    left: 22%;
    width: 57%;
    height: 53%;
    object-fit: cover;
    transform: rotate(-45deg);
}

.img_frame:hover {
    transform: rotate(45deg);


}

.tick text {
    font-size: 13px;
}

.myimage {
    border: 5px solid #4db6ac
}