/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('../font/roboto-v30-latin-regular.woff2') format('woff2'),
         url('../font/roboto-v30-latin-regular.woff') format('woff');
  }
  

  *,*::before,*::after{box-sizing:border-box;}
  *{margin:0;padding:0;}

body {
    background-color: black;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    font-family: 'Roboto';
}

.content {
    margin-left: 5rem;
    margin-right: 5rem;
    width: 100%;
}

h1 {
    font-size: 5rem;
    margin-bottom: 0;
}

h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

input:focus {
    outline: none;
}

input {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #668295;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #B7C4CD;
    border-radius: 4px;
    vertical-align: middle;
    height: calc(1.8rem + 1.25rem + 2px);
    width: 100%;
    padding: 0.625rem calc(1.25rem + .5rem);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0 0.125em rgba(183, 196, 205, 0.5);
}

input:hover {
    border-color: #60798b;
}

a {
    color: #bbbbbb;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

h3 a {
    color: white;
}

td {
    padding: 5px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

tr:nth-child(even) {
    background-color: #2b2b2b;
}

th {
    text-align: left;
    padding: 10px;
    background-color: #566E7E;
}


p {
    margin-bottom: 10px;
}
