:root {
  color-scheme: dark light;
  background: #dcad7e;
  color: #926b4c;
  font-family: monospace;
  text-shadow: 0 1px 0 #fff4;
}

body {
  margin: 0;
  display: flex;
  min-height: 100vh;
  background: url("https://shaw.city/Background.jpg") center center / cover
    no-repeat;
  flex-direction: column;
  place-items: center;
  place-content: center;
  text-align: center;
}

a {
  color: #623b1c;
}

.logo {
  max-width: 50vw;
  position: relative;
  z-index: 2;
}

.logo svg {
  width: 100%;
  height: auto;
  /* position: relative;
    z-index: 2; */
}

.logo::before {
  content: "";
  position: absolute;
  inset: 92% 0 0 auto;
  border-radius: 50%;
  background: black;
  opacity: 0.4;
  height: 10%;
  width: 85%;
  z-index: -1;
  filter: blur(10px);
}
