:root {
    /* --first: #e6e6e6;
    --second: #111; */
    --first: #FBFBFF;
    --second: #0B4F6C;
    --third: #F93943;

}

@media (-webkit-device-pixel-ratio: 1.25) {
    * {
        zoom: .97;
    }
}

body {
    background: var(--first);
    font-family: 'IBM Plex Mono', monospace;
}

a {
    all: unset;
    cursor: pointer;
}

a:hover {
    color: inherit;
}

li {
    list-style-type: none;
}

li a {
    text-decoration: none;
    cursor: pointer;
}

.display-1 {
    text-transform: uppercase;
    font-weight: 500;
}

/* MAIN MENU TOP LOCATION */
.menu-container {
    z-index: 99;
}

.main-menu {
    margin: 2rem 0;
}

.top-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    background-color: #0E3C5F80;
    backdrop-filter: blur(6.8px);
    -webkit-backdrop-filter: blur(6.8px);
    z-index: 10;
    border-radius: .5rem;
}

.top-menu li {
    text-align: center;
    width: 100%;
}

.top-menu li a {
    display: block;
    font-weight: 800;
    text-decoration: none;
    color: var(--first);
    cursor: pointer;
    padding: 1rem;
    margin-right: auto;
    margin-left: auto;
}

.top-menu li a:hover {
    color: var(--first);
    background-color: var(--third);
}

.top-menu li:first-child:hover>a {
    border-radius: .5rem 0 0 .5rem;
}

.top-menu li:last-child:hover>a {
    border-radius: 0 .5rem .5rem 0;
}


/* TITLE  */
.title {
    margin: 10rem 0rem 8rem;
    padding: 0 2rem;
    position: relative;
    transition: 0s color;
    z-index: 1;
    color: var(--second);
}

.title:hover {
    color: var(--first);
    transition-delay: .2s;
}

.title::before {
    transform: scaleX(0);
    transform-origin: bottom right;
}

.title:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.title::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0 0 0 0;
    background: var(--third);
    z-index: -1;
    transition: transform .3s ease;
}

/*FOOTER*/
.footer-col {
    height: 10vh;
}