@font-face {
    font-family: Cascadia;
    src: url(./CascadiaCode.woff2);
}

body {
    background-color: black;
    margin: 0%;
    padding: 0%;
    color: white;
    font-family: 'Cascadia';
}

.navbar-ctn {
    border-style: solid;
    border-width: 3px;
    border-color: white;
    position: absolute;
    display: flex; /* Use flexbox for the ul */
    align-items: center; /* Center items vertically */
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0%;
}

.navbar-menu {
    width: 100%;
}

.logo-nav {
    height: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.big-logo {
    max-height: 100vh;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.fade {
    width: 300vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.644);
    display: none;
    animation: fadeIn .2s;
}

button {
    background-color: rgba(0, 0, 0, 0);
    border-style: none;
}

button:hover {
    cursor: pointer;
}

.menu {
    background-color: black;
    border-style: solid;
    border-width: 3px;
    border-color: white;
    position: fixed;
    left: -100%;
    animation: slideIn .5s forwards;
    animation-delay: .1s;
}

.men-ctn {
    overflow: auto;
    width: 100%;
    height: 100% - 50px;
    top: 50px;
    right: 0;
    bottom: 0;
    position: absolute;
}

.items-ul {
    list-style-type: none;
    font-size: xx-large;
}

.about {
    border-width: 3px;
    border-color: white;
    border-style: solid;
    text-align: center;
}

.a-title {
    text-decoration: underline;
    font-size: xxx-large;
}

a {
    text-decoration: none;
    color: white;
    transition: color .2s linear;
}

a:link, a:visited {
    color: white;
}

a:hover {
    color: grey;
}

.iframe-ul {
    text-align: center;
    list-style-type: none;
    padding: 0%;
    margin-top: 24px;
}

.fr-li {
    border-style: solid;
    border-width: 3px;
    width: fit-content;
    display:inline-block;
    margin-bottom: 24px;
}

iframe {
    width: 75vw;
    margin: 0 auto;
    text-align: left;
    border-style: solid;
    border-width: 0;
    border-top-width: 3px;
    height: 95vh;
    margin-top: 24px;
}

.footer {
    text-align: center;
    border-style: solid;
    border-width: 3px;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes slideIn {
    0% { left: -100; }
    100% { left: 0%; }
}

@keyframes slideOut {
    0% { left: 0; }
    100% { left: -100%; }
}
