* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
    background: var(--content-bg);
    min-height: 100vh;
    background: linear-gradient(to top, black, rgb(0, 1, 61));
    display: flex;
    justify-content: center;
    padding-top: 200px;
}
div{
    text-align: center;
    margin-bottom: 80px;
}
h1{
    font-size: 30px;
    font-weight: 700;
    color: #65F2F6;
    text-shadow: 0px 2px 5px rgb(163, 226, 255);
    text-align: center;
}

.return-home, p{
    font-size: 45px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.452);
    text-align: center;
}

.link{
    color: white;
    font-size: 25px;
    text-decoration: none;
    cursor: pointer;
}

footer{
    width: 100%;
    position: fixed;
    color: white;
    text-align: center;
    bottom: 20px;
}


.label {
    display: inline-block;
    transform-origin: center;
    transition: transform 10s ease;
}

.label {
  animation: pop 800ms ease-in-out infinite;
}

@keyframes pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}