.A .col-2{
    margin-top: 10px;
}

.mySection {
    width: 100%;
    height: 30vh;
    margin: 50px auto;
    text-align: center;
}

.myDiv {
    text-align: center;
    border-radius: 50%;
}

img {
    width: 50%;
    height: 25vh;
    margin: 5px;
    border-radius: 50%;
    opacity: .40;
    transform: rotate(-20deg);
    transition: all 3.33s ease;
}

    img:hover {
        opacity: 1;
        transform: rotate(20deg) scale(1.25);
        transition: all .33s;
    }


.box {
    width: 300px;
    height: 300px;
    background-image: linear-gradient(45deg,red,yellow);
    background-image: repeating-linear-gradient(45deg,red 10px,yellow 20px);
    background-image: radial-gradient(circle,red, orange,yellow);
    /*Very Good Croos*/
    background-image: repeating-radial-gradient(circle,red 1px,orange 2px,yellow 3px);
}



.box2 {
    width: 300px;
    height: 300px;
    background-image: linear-gradient(to bottom right, transparent,lightblue),url(Bear2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0;
}

    .box2 h3 {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        bottom: 0;
        margin: 0;
        line-height: 1;
        text-decoration: underline;
        padding: 0;
    }

.myDiv {
    transition: all 3s;
}

.hide {
    opacity: 0;
    border: 0px;
}

.show {
    opacity: 1;
    border: 2px solid red;
}

.myNumber {
    height: 66vh;
    width: 80%;
    font-size: 50px;
    font-weight: bolder;
    text-align: center;
}
