html {
    background-color: rgb(32, 35, 36);
    color: snow;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

body {
    /* margin-top: 100px; */
    margin-left: 0px;
}

h2 {
    text-align: center;
}

footer {
    font-weight: 100;
    color: snow;
}

nav {
    z-index: 10000;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: rgb(85, 84, 83);
    display: inline-block;
    font-size: larger;
    font-weight: 100;
    margin: 0px;
    padding: 0px;
    transition: top 0.3s;
}

nav li {
    /* background-color: sienna; */
    display: inline;
}

nav a {
    /* background-color: slategray; */
    display: inline;
    padding: 0 1em 0 1em;
    margin: 0;
    text-align: right;
    color: snow;
}

footer {
    font-size: small;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

a {
    text-decoration: none;
}

a:link {
    opacity: 1;
}

a:visited {
    opacity: 1;
}

a:hover {
    opacity: 0.5;
}

a:active {
    opacity: 0.3;
}

ul {
    list-style: none;
    list-style-position: outside;
}

.shortDesc {
    font-size: medium;
}

.section {
    margin: auto;
}

hr.rounded {
    border-top: 3px solid rgba(70, 69, 69, 0.5);
    border-bottom: 3px solid rgba(70, 69, 69, 0.5);
    border-left: 3px solid rgba(70, 69, 69, 0.5);
    border-right: 3px solid rgba(70, 69, 69, 0.5);
    background-color: rgba(70, 69, 69, 0.5);
    border-radius: 1.5px;
    width: 90%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btnList {
    text-align: center;
    display: block;
}

.secondaryBtn {
    border:  1px solid snow;
    color: snow;
    border-radius: 5px;
    padding: 10px;
    min-width: 100px;
}

.primaryBtn {
    border:  1px solid snow;
    background-color: snow;
    color: rgb(32, 35, 36);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    min-width: 100px;
}