body {
    padding: 0;
    margin: 0;
    background-color: blueviolet;
    overflow: hidden;
}

.toggle {
    background-color: rgb(59, 158, 59);
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
}

.fa-arrows-rotate {
    font-size: 60px;
    color: white;
    position: absolute;
    top: 20px;
    left: 20px;
    /* transition: 1s; */
}

#rotate {
    transition: 0.6s;
}

.menu {
    background-color: #fff;
    height: 100px;
    width: 100px;
    transform: scale(0);
    border-radius: 50%;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transition: 1s;
}

a {
    display: inline-block;
    position: absolute;
    font-size: 15px;
    color: rgb(141, 178, 191);
}
a:nth-child(1){
    top: 6px;
    left: 45px;
}
a:nth-child(2){
    top: 24px;
    left: 77px;
}
a:nth-child(3){
    top: 58px;
    left: 76px;
}
a:nth-child(4){
    top: 78px;
    left: 42px;
}
a:nth-child(5){
    top: 58px;
    left: 10px;
}
a:nth-child(6){
    top: 23px;
    left: 12px;
}
a:hover {
    color:rgb(59, 158, 59);
}