@font-face {
    font-family: Poppins;
    src: url("./Fonts/Poppins/Poppins-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

:root {
    --primaryBackgroundColor: #1B1B1B;
    --linkHover: #eee;
    --link: rgb(3, 210, 247);
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: Poppins;
}
body {
    background-color: var(--primaryBackgroundColor);
    min-height: 800px;
}
div.wrapper {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--primaryBackgroundColor); 
}
.ntwLogo {
    display: block;
    margin: 50px auto 60px auto;
    width: 250px;
    height: auto;
}
ul.exampleList {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
li {
    display: block;
    width: 300px;
    margin: 10px 0;
    overflow: hidden;
    border: 1px solid rgb(68, 67, 68); 
    touch-action: auto;
    /* height: 50px; */
}
li .description {
    height: 0;
    box-sizing: border-box;
    font-family: Poppins;
    color: rgb(149, 250, 162);
    font-size: 14px;
    padding: 0;
    line-height: 24px;
    max-height: 24px;
    transition: max-height 0.5s ease;
}
li:hover {
    height: auto;
}
li:hover .description, li:active .description, li:focus .description {
    height: auto;
    max-height: 500px;
    padding: 0 10px 10px 10px;
}
li:hover .listItem {
    color: var(--linkHover);
}
li:hover .goToLink, li:active .goToLink, li:focus .goToLink {
    opacity: 1;
    height: auto;
    padding: 7px 0;
}
.listItem {
    display: block;
    color: var(--link);
    width: 100%;
    height: 100%;
    font-size: 1.2em;
    padding: 10px;
    text-align: center;
}
.listItem:visited, .listItem:focus {
    color: var(--link)
}
.listItem:hover {
    color: var(--linkHover);
}

.goToLink, .goToLink:visited, .goToLink:focus {
    display: block;
    opacity: 0;
    height: 0px;
    font-size: 13px;
    color: black;
    background-color:rgb(3, 210, 247);
    text-align: center;
    text-decoration: none;
    /* padding: 7px 0; */
    transition: opacity 0.5s ease, height 0.5s ease-in-out;
    z-index: 10;
}

.goToLink:hover {
    background-color: steelblue;  
    color: white;
}


footer {
    display: block;
    color: steelblue;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: var( --primaryBackgroundColor);
    padding: 10px 0px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}