* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #202124;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title {
    margin-bottom: 20px;
    color: #fff;
    font-size: 40px;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3C4042;
    margin-right: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.icon i {
    font-size: 40px;
    color: #DCDCDC;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s ease-in-out, visibility 0s, opacity 0.5s ease-in-out;

}

.icon::before {
    content: "";
    display: block;
    width: 39px;
    padding: 0 8px;
    height: 120%;
    background-color: #6666666e;
    transform: rotate(-45deg) translateX(-85px);
    position: absolute;
    left: 30px;
    transition: transform 0.3s ease-in-out;
}

.icon:hover i {
    visibility: visible;
    opacity: 1;
    transform: rotate(360deg);
}

.icon:hover.icon::before {
    transform: rotate(-45deg) translateX(-5px);
}