body,
html {
  margin: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

.image {
  position: fixed;
  height: 100%;
  width: 100%;
  transform: scale(1.3);
  background: radial-gradient(circle at 25% 35%, #576f6a, transparent 45%),
    radial-gradient(circle at 80% 70%, #2b4f4e, transparent 85%),
    radial-gradient(circle at 25% 35%, #79ffe1, transparent 15%),
    radial-gradient(circle at 80% 70%, #cef3eb, transparent 20%), #100f10;
  filter: blur(20px);
}

::selection {
  color: #141414;
  background: #79ffe1; /* WebKit/Blink Browsers */
}

.center {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.container {
  z-index: 5;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  color: #eee;
  height: 400px;
  width: 680px;
  box-shadow: 0 5px 17px rgba(0, 0, 0, 0.2), 0 2px 7px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.header {
  margin: 15px;
  height: 20px;
  border-bottom: 2px solid #151515;
}

.header .controls {
  display: flex;
  width: 48px;
  gap: 5px;
  --color: transparent;
}

.header .controls:hover {
  --color: unset;
}

.header .controls svg:active {
  filter: brightness(115%);
}

.header .controls svg:active path,
.header .controls svg:active rect {
  filter: brightness(80%);
}

.section {
  display: flex;
  justify-content: space-evenly;
  margin: 50px;
}

.profile {
  width: 175px;
  height: 175px;
  border-radius: 100%;
  -webkit-user-drag: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25), 0 -1px 0 rgba(0, 0, 0, 0.2) inset,
    0 2px 1px #141414 inset;
  animation: fadein 0.15s ease;
}

h1 {
  margin: 0;
}

h2 {
  font-size: 14px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 20px;
}

table {
  font-size: 14px;
}

table tr > td {
  padding-bottom: 5px;
  padding-right: 5px;
}

table td:first-child {
  font-weight: bold;
  margin-right: 20px;
}

.spacer > td {
  padding-bottom: 15px;
}

a,
a:link,
a:visited {
  color: #eee;
  transition: all ease-in-out 0.1s;
  text-decoration: none;
}

a:hover,
a:active {
  color: #79ffe1;
  text-decoration: underline;
}

svg {
  width: 54px;
}

img,
br {
  user-select: none;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 600px) {
  .container {
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 0;
  }

  .header {
    background: transparent;
    padding-bottom: 10px;
  }

  .profile {
    margin-bottom: 25px;
  }

  .section {
    flex-direction: column;
    align-items: center;
  }
}
