body {
    height: 100vh;
    background: #000;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}

a {
    color: #fff;
    margin: 0 35px;
    text-decoration: none;
    display: block;
    position: relative;
    width: 75px;
    height: 75px;
}

.layer {
    width: 75px;
    height: 75px;
    transition: transform 0.3s;
}

span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.3s;
}

.fa-solid {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    line-height: 35px;
}

.text {
    position: absolute;
    left: 50%;
    bottom: -5px;
    font-weight: 500;
    transform: translateX(-50%);
    transition:
        bottom 0.3s ease,
        opacity 0.3s ease;
}

.col:nth-child(1) a span,
.col:nth-child(1) a .text {
    color: #ff0050;
    border-color: #ff0050;
}

.col:nth-child(2) a span,
.col:nth-child(2) a .text {
    color: #00ff11;
    border-color: #00ff11;
}

.col:nth-child(3) a span,
.col:nth-child(3) a .text {
    color: #1dcaff;
    border-color: #1dcaff;
}

a:hover .layer {
    transform: rotate(-35deg) skew(20deg);
}

a:hover span:nth-child(1) {
    opacity: 0.2;
}

a:hover span:nth-child(2) {
    opacity: 0.4;
    transform: translate(5px, -5px);
}

a:hover span:nth-child(3) {
    opacity: 0.6;
    transform: translate(10px, -10px);
}

a:hover span:nth-child(4) {
    opacity: 0.8;
    transform: translate(15px, -15px);
}

a:hover span:nth-child(5) {
    opacity: 1;
    transform: translate(20px, -20px);
}

.col:nth-child(1) a:hover span {
    box-shadow: -1px 1px 3px #ff0050;
}

.col:nth-child(2) a:hover span {
    box-shadow: -1px 1px 3px #00ff11;
}

.col:nth-child(3) a:hover span {
    box-shadow: -1px 1px 3px #1dcaff;
}

.text {
    opacity: 0;
}

a:hover .text {
    bottom: -35px;
    opacity: 1;
}

h2 {
    text-align: center;
}

.col {
    display: flex;
    justify-content: center;
}

.menu-height {
    height: 150px;
}