@font-face {
    font-family: appleGaramond;
    src: url(../../apple-garamond-cufonfonts/AppleGaramond.ttf);
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 2.5rem;
    line-height: 1.7;
    background-color: #000000;
    color: #ffffff;
    overscroll-behavior-y: none;
}

h1,
p {
    flex: 0;
    padding: 5vw;
}

h1 {
    margin-bottom: -5vh;
    font-family: appleGaramond, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.law {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 30vh;
}

#page-title {
    margin-left: 30vw;
    margin-bottom: -10;
}


/* progress bar CSS rules */
.progress-section {
    position: fixed;
    left: 25px;
    top: -10px;
    height: 20%;
    display: flex;
    justify-content: space-between;
    will-change: transform;
    transition: 0.3s ease-out;
}

.progress-bar-wrap {
    z-index: 2;
    position: relative;
    width: 5px;
    border: 1px solid black;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgb(70, 70, 70);
    margin-right: 1rem;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0%;
    background-color: rgb(189, 189, 189);
}

.progress-num {
    color: rgb(189, 189, 189);
}

body::-webkit-scrollbar {
    display: none;
}

/* menu section of CSS */
ul {
    list-style: none inside;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

a {
    text-decoration: none;
    color: white;
    background-color: #000000;
    border: 0.1rem solid;
    padding: 1rem 2.5rem;
}

a:hover {
    color: #000000;
    background-color: #ffffff;
}

#icon,
#dropdown-menu ul li {
    cursor: pointer;
}

#icon,
#dropdown-menu {
    z-index: 1;
}

#icon {
    object-fit: contain;
    min-width: 60vw;
    width: 7vw;
    height: 7vw;
    position: fixed;
    top: 2%;
    left: -24%;
    cursor: pointer;
}

#icon:hover {
    height: 10vw;
}

#dropdown-menu {
    display: none;
    margin-left: 10vw;
    float: left;
    position: fixed;
    /* background-color: #000000; */
    justify-content: flex-start;
    padding: 10px;
    border-radius: 0px 4px 4px 0px;
}

#dropdown-menu ul li {
    float: left;
    list-style: none;
    padding: 10px 10px;
    position: relative;
    border-radius: 4px;
    margin: 0;
}

#dropdown-menu ul li a {
    display: block;
}