.test {
    width: 100vw;
    background-color: rgb(242, 226, 226);
    text-align: center;
    margin-top : 0;
}

html,
body{
    height:100vh;
    margin : 0;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
}
::selection {
    background: #623f8f;
}
body {
    margin: 0;
    background: linear-gradient(45deg, #49a09d, #571f83);
    font-family: sans-serif;
    font-weight: 100;
}

footer{
    width: 100vw;
    margin-top : auto;
    color : rgba(255, 255, 255, 0.78);
    background: linear-gradient(0deg, #542f86, #8060a1, rgb(73, 147, 154));
}

header{
    color: #bdf1f1;
    background: linear-gradient(0deg, #49a09d, #49a09d);
}

.container {
    position: absolute;
    color: #d0b6b6;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
table {
    width: 800px;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
th,
td {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
th {
    text-align: center;
}
thead th {
    background-color: #55608f;
}
tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
tbody td {
    position: relative;
}
tbody td:hover:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -9999px;
    bottom: -9999px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    color: #5b378b;
    background: #7090a9;
    border: 2px solid #514e8d;
    box-shadow: 3px 3px 0 #514e8d,
    -3px -3px 0 #514e8d,
    -3px 3px 0 #514e8d,
    3px -3px 0 #514e8d;
    transition: 500ms ease-in-out;
}

button:hover {
    box-shadow: 10px 3px 0 #514e8d, -10px -3px 0 #514e8d;
}

button:focus {
    outline: none;
}

form {
    width: 550px;
    height: 40%;
    margin: 10px auto 50px auto;
    padding: 20px;
    position: relative;
    color : white;
    background: #51518e;
    border: 1px solid #5e3b8d;
    border-radius: 3px;
}

form::before,
form::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 2px;
    right: 2px;
    top: 0;
    z-index: -1;
    background: #4b8598;
    border: 1px solid #ccc;
}

form::after {
    left: 4px;
    right: 4px;
    bottom: -5px;
    z-index: -2;
    box-shadow: 0 8px 8px -5px rgba(0,0,0,.3);
}

::-webkit-input-placeholder {
    color: #bbb;
}

:-moz-placeholder {
    color: #bbb;
}

.placeholder{
    color: #bbb; /* polyfill */
}

form input{
    margin: 5px 0;
    padding: 15px;
    width: 100%;
    *width: 518px; /* IE7 and below */
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #4b8598;
    color: white;
}

form input:focus{
    outline: 0;
    border-color: #aaa;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .3) inset;
}

form button{
    margin: 20px 0 0 0;
    padding: 15px 8px;
    width: 100%;
}
