.GalMenu {
    margin: 0px;
    padding: 0px;
    display: none;
    position: fixed;
    z-index: 9999;
}

.circle,
.ring {
    height: 300px;
    position: relative;
    width: 300px;
}

.circle {
    margin: 0px auto;
}

.ring {
    border-radius: 50%;
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0.1) rotate(-270deg);
    transition: all 0.4s ease-out 0s;
}

.open .ring {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.center {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    inset: 0px;
    color: white;
    height: 80px;
    line-height: 80px;
    margin: auto;
    position: absolute;
    text-align: center;
    width: 80px;
    transition: all 0.4s ease-out 0s;
}

.open .center {
    border-color: rgb(170, 170, 170);
}

.menuItem {
    border-radius: 50%;
    display: block;
    height: 80px;
    line-height: 80px;
    margin-left: -41px;
    margin-top: -41px;
    position: absolute;
    text-align: center;
    width: 80px;
    background-size: 80px;
    transition: transform 300ms;
}

.menuItem:hover {
    transform: scale(1.15);
}

.ring a:nth-of-type(1) {
    background-image: url("../images/yolo.png");
}

.ring a:nth-of-type(2) {
    background-image: url("../images/ringo.png");
}

.ring a:nth-of-type(3) {
    background-image: url("../images/VD019-01.png");
}

.ring a:nth-of-type(4) {
    background-image: url("../images/leeo.png");
}

.ring a:nth-of-type(5) {
    background-image: url("../images/VD017-01.png");
}

.ring a:nth-of-type(6) {
    background-image: url("../images/singa.png");
}

.ring a {
    display: inline-block;
    color: rgb(255, 255, 255);
    /* text-shadow: rgb(220, 150, 90) 1px 0px 0px, rgb(220, 150, 90) 0px 1px 0px, rgb(220, 150, 90) -1px 0px 0px, rgb(220, 150, 90) 0px -1px 0px; */
}

#overlay {
    height: 100%;
    position: fixed;
    width: 100%;
    left: 0px;
    top: 0px;
    background: url("https://www.bmorvape.com/assets/css/GalMenu.css?ver=1667356872") 0px 0px repeat scroll rgba(0, 0, 0, 0.5);
    display: none;
    z-index: -1;
}