html, body {
    width: 100%;
    height: 100%;
    background-color: rgb(29, 19, 48);
}
div {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    width: min-content;
    align-items: center;
}
div span {
    color: #ddd;
    font-weight: thin;
    line-height: 2em;
}
div a {
    text-decoration: none;
    color: #ddd;
    border-bottom: 1px dashed #ddd;
}
