body {
    background-color: #19171a;
    color: #f9f9f9;
    font-family: "Nothing Font (5x7) Regular", monospace;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

a:link {
    text-decoration: none;
    color: inherit;
}
a:visited {
    text-decoration: none;
    color: inherit;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
}

.widget {
    background-color: #292c31;
    color: inherit;
    font-size: 17px;
    font-family: "Space Mono";
    text-transform: initial;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 20px;
}
.widget i {
    font-size: 18px;
    margin-right: 15px;
}
.widget span {
    text-align: center;
    width: 100%;
}

.widget:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.35);
    transition: 0.2s ease-in-out;
}

.heading-widget {
    background-color: #292c31;
    color: inherit;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: relative;
    padding: 18px;
    margin-bottom: 4em;
    width: 30%;
}

.clock {
    font-size: 30px;
    text-align: center;
}

.greeting-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
/*     align-items: center; */
    height: 100%;
}

.greeting {
    font-size: 32px;
    text-align: left;
}

.impressum-widget {
    background-color: #292c31;
    color: inherit;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: relative;
    padding: 18px;
    margin-bottom: 4em;
    width: 42%;
}

.impressum-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: inherit;
    font-size: 17px;
    font-family: "Space Mono";
    text-transform: initial;
}
.impressum-stack h2 {
    text-align: center;
}

.date {
    font-size: 20px;
    text-align: left;
}

button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}
.navbar,
.navbar-burger,
.menu,
.background {
    position: fixed;
}
body.open .background {
    filter: blur(20px);
}
.navbar {
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 72px;
    padding-left: 20px;
    padding-right: 72px;
}
.navbar-burger {
    z-index: 3;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    background-image: url("./../svg/menu.svg");
    background-repeat: no-repeat;
    background-position: center;
}
body.open .navbar-burger {
    background-image: url("./../svg/close.svg");
}
.menu {
    z-index: 2;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    border-bottom: 20px solid white;
    transition: 0.5s;
}
body.open .menu {
    opacity: 1;
    visibility: visible;
}
.menu nav:hover a {
    opacity: 0.25;
}
.menu nav a:hover {
    opacity: 1;
}
.menu nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.menu a {
    position: relative;
    color: #f9f9f9;
    font-size: 32px;
    font-family: inherit;
    padding: 20px 0;
    width: 300px;
    text-decoration: none;
    transition: 0.4s;
}
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #f7f7f7;
    transform: scaleX(0);
    transform-origin: 0% 50%;
    transition: 0.4s;
}
.menu a:hover::after {
    transform: scaleX(1);
}
body.open .menu a {
    animation: appear 0.3s backwards;
}

@keyframes appear {
0% {
    opacity: 0;
    translate: 0 50px;
}
100% {
    opacity: 1;
}
}
