@import "base.css";

#top, #bottom, #left, #right {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: forma-djr-display, sans-serif; 
    font-size: var(--vertical-26-pinch);
    line-height: var(--vertical-42);
    font-weight: 700;
    letter-spacing: 0.075em;
    color: #ffffff;
    opacity: 1;
    -webkit-text-stroke: 0.5px #0000ff; 
    }

#top { 
    top: 0;
    left: 0; 
    right: 0;
    height: var(--vertical-68);
}

#bottom { 
    bottom: 0;
    left: 0; 
    right: 0;
    height: var(--vertical-68);
}

#bottom > span {
    transform: rotate(180deg);
}

#left { 
    top: 0; 
    bottom: 0;
    left: 0;
    width: var(--vertical-68);
}

#left > span {
    flex-shrink: 0;
    transform: rotate(-90deg);
}

#right { 
    top: 0; 
    bottom: 0;
    right: 0;
    width: var(--vertical-68);
}

#right > span {
    flex-shrink: 0;
    transform: rotate(90deg);
}


/* Tablet */
@media screen and (max-width: 754px) {
    
    #top, #bottom, #left, #right {
        font-size: var(--vertical-26);
        line-height: var(--vertical-26-pinch);
    }

    #top, #bottom {
        height: var(--vertical-42-pinch);
    }

    #left, #right {
        width: var(--vertical-42-pinch);
    }
}

/* Mobile */
@media screen and (max-width: 610px) {

        #top, #bottom, #left, #right { 
        display: none; 
    }
}