* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: rgb(24, 24, 24);
    color: white;
    text-align: center;
    align-items: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
nav {
    background-color: rgb(34, 34, 34);
    width: 100%;
}
nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
}
nav ul li a {
    display: block;
    color: white;
    background-color: rgb(73, 73, 73);
    padding: 10px 14px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    margin: 6px;
}
nav ul li a:hover {
    background-color: rgb(46, 46, 46);
}
a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(29, 159, 199);
    text-decoration: none;
    font-weight: bold;
}
main a:hover {
    color: rgb(55, 29, 199);
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}
/* HAMBURGER MENU LAYOUT */
#menuToggle {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#menuToggle i {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.top-nav-mobile {
    background-color: rgb(34, 34, 34);
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.icon-bars {
    opacity: 1;
    transform: rotate(0deg);
}
.icon-times {
    opacity: 0;
    transform: rotate(-90deg);
}
.drawer-open .icon-bars {
    opacity: 0;
    transform: rotate(90deg);
}
.drawer-open .icon-times {
    opacity: 1;
    transform: rotate(0deg);
}
#drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 180px;
    background: rgb(34, 34, 34);
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 1000;
    padding-top: 60px;
}
#drawer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
#drawer ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgb(73, 73, 73);
    border-radius: 50px;
    margin: 6px 12px;
    padding: 10px 16px;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s;
}
#drawer ul li a:hover {
    background: rgb(46, 46, 46);
}

.drawer-open #drawer {
    transform: translateX(0);
}

.drawer-open #menuToggle i {
    transform: rotate(180deg);
}
@media (max-width: 767px) {
    .page-title {
        padding-top: 30px;
    }
    nav:not(#drawer) {
        display: none;
    }
}
@media (min-width: 768px) {
    #menuToggle,
    .side-drawer {
        display: none !important;
    }
}