* {
    color: unset;
    text-decoration: unset;
    padding: unset;
    margin: unset;
    font-weight: unset;
    transition: none;
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #212529; /* Dark Grey */
    color: #6c757d;
    font-family: 'Ubuntu', sans-serif;
}

div {
    padding: 2rem;
}

a {
    font-family: monospace;
}

a:hover {
    color: #6c757d5e; /* Hover color */
    transition: 1s;
}

h1 a {
    font-size: 5rem; /* Increase the font size */
    font-family: 'Ubuntu', sans-serif;
}

h2 {
    margin-block-end: 21px;
}

h2 a {
    font-size: 3rem;
    font-family: 'Ubuntu', sans-serif;
}

p {
    margin-block-start: 16px;
    margin-block-end: 16px;
}

p a {
    margin-block-start: 16px;
    margin-block-end: 16px;
    font-family: 'Ubuntu', sans-serif;
}


button {
    border-radius: 6px;
    background-color: #8957e5;
    border: unset;
    padding: 0.5rem 1rem;
    color: white;
    font-family: monospace;
    font-size: 1rem;
}

button:hover {
    background-color: #6f42c1;
    cursor: pointer;
    transition: 1s;
    text-decoration: underline;
}

.bottom {
    position: absolute;
    bottom: 1rem;
    margin: unset;
}

.imprint {
    position: absolute;
    top: 1rem;
    color: #212529;
}