.socialVertical {
    position: fixed;
    width: 80px;
    height: 80vh;
    left: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    animation: verticalanimation 1.5s;
    -webkit-animation: verticalanimation 1.5s;
    -moz-animation: verticalanimation 1.5s;

}

.iconsBox {
    width: 40px;
    height: fit-content;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socialIcons svg {
    width: 20px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.2s linear;
}

.socialIcons svg:hover {
    transform: translateY(-2px);
    stroke: var(--green);
}

.verticalLine {
    width: 1px;
    height: 100px;
    background-color: var(--white);
}

.emailVertical {
    position: fixed;
    width: 80px;
    height: 80vh;
    right: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    animation: verticalanimation 1.5s;
    -webkit-animation: verticalanimation 1.5s;
    -moz-animation: verticalanimation 1.5s;
}

.emailText {
    padding: 8px;
    writing-mode: vertical-lr;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s linear;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.emailText:hover {
    transform: translateY(-2px);
    color: var(--green);
}

@media screen and (max-width: 770px) {
    .socialVertical, .emailVertical {
        display: none;
    }
}

@keyframes verticalanimation {
    0% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}