body, html {
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.8vh;
}

header {
    position: relative;
    height: 10vh;
    margin: 1.5vh 1.5vh 4vh 1.5vh;
}

#HeaderLogo {
    position: absolute;
}

#Title {
    margin: 0;
    text-align: center;
    width: 100%;
    height: 10vh;
    line-height: 10vh;
    font-size: 3.8vh;
}

.Section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 70vw;
    margin: 1.5vh auto;
    padding: 1.3vh;
    border: 1px solid black;
    box-sizing: border-box;
}

.DocName {
    display: inline-block;
    width: 37vh;
}

.DocBtnsDiv {
    display: inline-block;
    margin-right: 0;
}

.DocBtnsDiv>button {
    width: 11vh;
    height: 3vh;
    border: 1px gray solid;
    border-radius: 10rem;
    margin: 0 1vh 0 1vh;
    font: inherit;
    font-size: 1.5vh;
    padding: 0;
}

.DocBtnsDiv>button:hover {
    background-color: #e0e0e0;
    border-color: #424242;
}

.DocBtnsDiv>button:active {
    background-color: white;
    border-color: gray;
}

#interviewBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    top: 0;
    right: 0;
    z-index: 1;
}

#interviewPage {
    top: 2.5%;
    left: 10%;
    height: 95%;
    width: 80%;
    position: absolute;
    margin: auto;
    z-index: 2;
    background-color: white;
}

.hidden {
    display: none !important;
}