/*General*/
body {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    font-size: 16px;
    background-color: #121212;
    color: whitesmoke;
}

a, h1, h2, h3, h4, h5 {
    color: #f1c385 !important;
}

h1 {
    margin-bottom: 1rem !important;
}

ul {
    list-style: disc;
}

h1 > a:hover {
    color: #f1c385;
}

.banner-img {
    height: 200px;
    border: solid 1px #f1c385;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.banner-img .title-text {
    position: absolute;
    bottom: 0;
    left: 10px;
    font-size: 40px;
    text-shadow: -3px -3px 5px black;
    -webkit-text-stroke: 0.5px black;
}

.banner-img img {
    object-fit: cover;
}

#contents-table ol {
    padding: 0 1rem;
}

#contents-table li {
    margin-bottom: 0;
}

ol ol {
    margin-top: 0;
    margin-left: 10px;
}

.video{
    width: 60%;
    padding: 0 1.5rem;
}

.video video {
    width: 100%;
    height: auto;
}

.video-left {
    float: left;
}

.video-right {
    float: right;
}

.video-center {
    width: 75%;
    margin: 0 12.5%;
    padding: 0;
}

.video-full {
    width: 100%;
    padding: 0;
}

textarea {
    color: white;
    border-color: #f1c385;
    resize: none !important;
}

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

textarea:focus {
    border-color: #f1c385;
}

.link-error {
    color: red;
}

code {
    color: whitesmoke !important;
    background-color: grey;
}

pre {
    background-color: gray;
    color: white !important;
    padding-left: 10px;
}

ul, ol {
    margin-left: 3rem !important;
}

button {
    background-color: #343a40;
}

a[data-wh-icon-size="medium"] span:not(.iconmedium) {
    display: none;
}

.arrow-icon {
    height: 45px;
}

.timings-name-input {
    color: white;
}

.assignments-window-container {
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: sticky;
    width: 300px;
    height: 0px;
}

.close-assignments-window {
    position: absolute;
    right: 0;
}

.assignments-window-content {
    background-color: #121212;
    height: 300px;
}

@media screen and (max-width: 575px) {
    h1 {
        text-align: center;
    }

    .center-video {
        width: 100%;
    }

    .video {
        float: none;
        width: 100%;
        padding: 0;
    }
}

/*Header*/
.test-site-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #121212;
    color: whitesmoke;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    height: 35px;
}

.test-site-navbar {
    margin-top: 35px;
}
/*Navbar*/
.navbar-brand {
    color: #f1c385;
}

.navbar-nav a {
    font-size: 2rem;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: #6c757d !important;
}

/*Footer*/
footer * {
    color: whitesmoke;
}

footer a {
    color: #f1c385;
}

footer a:hover {
    color: #f1c385;
}

footer .quick-links a {
    text-decoration: none;
}