* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: consolas;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #34495e;
    /*background-image: url('back.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
}

.clock {
    position: relative;
    width: 720px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99;
}

.clock .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.clock .wrapper h2 {
    font-size: 6em;
    color: #fff;
}

.clock .wrapper h2:nth-child(odd) {
    border-radius: 10px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#ampm {
    position: relative;
    font-size: 2em;
    color: #f6ff00;
    top: -50px;
    font-weight: 700;
}

/* Zentrieren des "Back"-Links */
.back-link {
    margin-top: 20px;
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-link i {
    margin-right: 10px;
}

/* Stile für den "Back"-Link, der unter der Uhr angezeigt wird */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}