@font-face {
    font-family: SegoeUI;
    src:
        local("Segoe UI"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff2) format("woff2"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff) format("woff"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.ttf) format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: SegoeUI;
    src:
        local("Segoe UI Semilight"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff2) format("woff2"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff) format("woff"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.ttf) format("truetype");
    font-weight: 200;
}

body {
  font-family: "SegoeUI";
  font-weight: 300;
  background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.5)), url('bg.jpg') center/cover no-repeat;
  margin: 50px;
  padding: 20px;
  background-attachment: fixed;
  border: 2px solid rgba(255,255,255,1);
  border-radius: 25px;
  backdrop-filter: blur(8px);
}

p {
  color: white;
  font-size: 20px;
  text-shadow: 0px 0px 5px rgba(0,0,0,1);
}

h1 {
  color: white;
  font-size: 40px;
  text-align: center;
  text-shadow: 0px 0px 5px black;
  width: 100%;
}

h2 {
  color: white;
  font-size: 30px;
  text-shadow: 0px 0px 5px black;
}

h3 {
  color: white;
  font-size: 20px;
  text-shadow: 0px 0px 5px black;
}

h4 {
  color: white;
  font-size: 15px;
  text-shadow: 0px 0px 5px black;
}

a:link, a:visited {
  color: #c2ddff;
}

a:hover {
  color: #ffffff;
  text-shadow: 0px 0px 10px rgba(255,255,255,1);
}

iframe {
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 25px;
  width: 100%;
}

hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

li {
  color:white;
  text-shadow: 0px 0px 5px rgba(0,0,0,1);
}

/* -----topbar stuff----- */

table {
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  border-radius: 20px;
}

th {
  color: white;
  background: linear-gradient(0deg,rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.75) 100%), #00b380;
  text-alignment: center;
  border-spacing: 0;
  padding: 5px;
  text-shadow: 0 0 25px black;
}

tr:first-child th:first-child,
tr:first-child td:first-child {
    border-top-left-radius: 20px;
}

tr:first-child th:last-child,
tr:first-child td:last-child {
    border-top-right-radius: 20px;
}

tr:last-child td:first-child,
tr:last-child th:first-child{
    border-bottom-left-radius: 20px;
}

tr:last-child td:last-child,
tr:last-child th:last-child {
    border-bottom-right-radius: 20px;
}