html {
  height: 100%
}

body {
  background: #191638;
  font: 12px/1.5 -apple-system, BlinkMacSystemFont, 'helvetica neue', helvetica, ubuntu, roboto, noto, 'segoe ui', arial, sans-serif;
  color: #fff;
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 1fr auto
}

.logo {
  --width: 286px;
  --height: 100px;
  --center-left: calc(50% - var(--width) / 2);
  --center-top: calc(50% - var(--height) / 2);
  --ease-in-out-quart: cubic-bezier(.77, 0, .175, 1);
  position: absolute;
  top: var(--center-top);
  left: var(--center-left);
  width: var(--width);
  height: var(--height);
  animation: fadein .8s var(--ease-in-out-quart)
}

.footer {
      grid-row-start: 2;
    grid-row-end: 3;
    font-size: 0.9rem;
    margin: 0px auto;
 
}

img {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto
}

p {
  color: rgba(255, 255, 255, .3);
  text-align: center
}
p.link {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin: 0px;
    padding: 2em 0px 0.6em;
}
p.link a{
    color: rgb(249, 217, 137) !important;

}

p.link a:hover{
  text-decoration:line-through;
  text-decoration-color: hsla(0,0%,100%,.9);
}



a, a:active, a:visited {
    color: hsla(0,0%,100%,.3);
    text-decoration: none;
    text-decoration-line: none;
    text-decoration-style: initial;
    text-decoration-color: initial;
    transition: color .2s ease-out,background 1s ease-in;
    transition-property: color, background;
    transition-duration: 0.2s, 1s;
    transition-timing-function: ease-out, ease-in;
    transition-delay: 0s, 0s;
}

a {
    position: relative;
    display: inline-block;
}


 a:hover {
  color: hsla(0,0%,100%,.9);
  text-decoration-line: line-through;
  text-decoration-style: initial;
  text-decoration-color: hsla(0,0%,100%,.9);
}

a:focus {
    outline: -webkit-focus-ring-color auto 1px;
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
    outline-width: 1px;
}

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