html {
    color: black;
}

h1, p {
    color: black;
}

h1, h2, h3, h4, h5 {
    font-weight: bold;
}

body {
    background-color: rgb(242, 242, 242);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Maven Pro', sans-serif;
}

p {
    font-size: 1em;
}

.card {
    border-radius: 20px;
    width: 50vw;
}

.off-white {
    background-color: rgb(242, 242, 242);
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.embossed-sm {
    box-shadow: -4px -4px 5px 0 rgba(255,255,255,1), 4px 4px 5px 0 rgba(0,0,0,.3);
}

.embossed-md {
    box-shadow: -8px -8px 10px 0 rgba(255,255,255,1), 8px 8px 10px 0 rgba(0,0,0,.3);
}

.embossed-lg {
    box-shadow: -12px -12px 20px 0 rgba(255,255,255,1), 12px 12px 20px 0 rgba(0,0,0,.3);
}

.full-page {
    width: 100%;
    height: 100%;
}

.grad-white {
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

.navlist-overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

.navlist-overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
    border-bottom: rgba(255,255,255,1) solid 2px;
    max-width: 80%;
    margin-left: 10%;
}

.no-border {
    border: none;
}

.overlay-content {
    position: relative;
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

.closeOverlayButton {
    margin-top: 10px;
    /* margin-left: 5px; */
    margin-left: 15px;
}

.navlist-overlay a:hover, .navlist-overlay a:focus {
    color: #f1f1f1;
}

.nav-link {
    text-decoration: none;
    color: rgba(0,0,0);
}

.nav-link:hover {
    color: rgba(0,0,0);
}

.nav-link:before {
    content: "";
    position: absolute;
    /* padding-left: 10%;
    padding-right: 10%; */
    width: 80%;
    height: 2px;
    bottom: 0;
    left: 10%;
    background-color: #000;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.nav-link:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.no-opacity {
    opacity: 1;
}

.rounded-sm {
    border-radius: 5px;
}

.rounded-md {
    border-radius: 10px;
}

.rounded-lg {
    border-radius: 20px;
}

.status-alert, .status-info {
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 100;
}

.status-alert {
    color:white;
    background-color: #ff3333;
}

.status-info {
    color:black;
    background-color: #70db70;
}

#topnav {
    margin: 2em;
}