body{
    overflow-y: scroll;
    overflow-x: hidden;
    border:0;
    margin: 0;
}

.content{
    overflow: auto;
    position: relative;
}

.content::before{
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    z-index: -1;

    display: block;
    background-image: url("../images/Background.jpg");
    background-size:cover;
    width: 100%;
    height: 100%;

    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
}

/*Header CSS*/
.header{
    padding: 10px;
    font-size: 20px;
    opacity: .85;
}
.header #title{
    text-align: center;
    font-family:Impact;
    padding: 0px ;
    margin: 0px;
    color: black;
}
.header #subscript{
    text-align: center;
    font-family: Impact;
    font-style: italic;
    color: black;
    padding: 0px;
    margin:0px;
}

.footer{
    background-color: rgb(180, 76, 76) ;
    padding-top: 18px;
    padding-bottom: 18px;
    margin:none;
    position:relative;
    width:100%;
}

#disclaimer{
    padding-left: 18px;
    margin-right:50%;
    position: relative;
    font-style: italic;
}

.testName{
    position: absolute;
    color: black;
    bottom:5px;
    left: 5%;
    right: 5%;
    background-color: rgb(255, 239, 239);
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 2px solid rgb(255, 239, 239);
    border-radius: 8px;
    font-size: 9pt;
    font-family: arial;
}
.className{
    position: absolute;
    color: black;
    top:5px;
    left: 5%;
    right: 5%;
    font-size: 18pt;
    text-align:center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 2px solid rgb(255, 239, 239);
    border-radius: 8px;
    background-color: rgb(255, 239, 239);
    font-family: arial;
}

.top{
    border-top: 3px solid rgb(99, 0, 0);
    border-bottom: 3px solid rgb(99, 0, 0);
    position: relative;
    background-color: rgb(187, 101, 101);
    margin-top: 20px;
    margin-bottom: 20px;
}

.top .testContainer{
    overflow: auto;
}

.top table{
    margin-left:auto;
    margin-right:auto;
    padding-bottom:25px;
    overflow: auto;
}

.top td{
    position: relative;
    width:140px;
    height:180px;
    border: 10px solid transparent;
}

.top img{
    display: block;
    padding-left: 0px;
    padding-right:0px;
    margin-left:auto;
    margin-right: auto;
    border: 1px solid transparent;
    border-radius: 16px;
    filter: brightness(80%);
}

.top td:hover img{
    filter: brightness(50%);
    cursor: pointer;
}

.top h1{
    text-align: center;
    margin-top:20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-family: arial;
}

.center{
    text-align: center;
}