html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    margin: 0;
    overflow-x: hidden;

    background-image: url("../src/back.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;

    font-size: 16px;
    color: #222;

}

body.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

body.fade-in.loaded {
  opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    background-color: #888888;
    color: white;
}


.sidebar {
    position: fixed;
    overflow-x: hidden;
    background-color:none;
    height: 100vh;
    width: 10%;
    border-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sidebar > ul {
    margin: 0 1rem 1rem 0;
    padding-left: 3rem;
    list-style: disc;
}


.mainColumn{
    margin-left: 20%;
    width: 80%;
}

.mainColumn > div{
    min-height: 100vh;
}

h1, h2{
    margin: 2rem 0 1rem 0;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111;
    position: relative;
}

h1::after {
    content: "";
    width: 6rem;
    height: 10px;
    background-color: #888;
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}

table {
    border-collapse: collapse;
     border: 1px solid #777;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

table th,
table td {
  border: 1px solid #777;
  padding: 8px 12px;
  text-align: left;
}


hr{
    width: 100%;
    margin: 0 calc(50% - 50vw);
    margin-bottom:2rem;
}