body{
    h1{
        text-align: center;
        background-color: black;
        color: var(--theme-light);
        padding: 10px;
        box-shadow: 0px 0px 5px black;
        z-index: 2;
    }
    .redirect-content{
        box-shadow: inset 0px 0px 10px black;
        background-color: var(--theme-light);
        padding-top: 10vw;
        padding-bottom: 10vw;
        z-index: 1;
        ul{
            display: flex;
            flex-direction: column;
            align-items: center;
            list-style: none;
            li{
                align-self: center;
                margin-bottom: 5vh;
            }
            li:hover{
                *{
                    font-weight: 400;
                }
                p{
                    border-bottom: 2px solid black;
                }
            }
            *{
                cursor: pointer;
                font-size: 1.1em;
            }
            a, a *{
                text-decoration: none;
            }
            p{
                color: black;
            }
        }
    }
}
