body {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Oswald';
    flex-direction: column;
}

.clock{
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 500px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.time{
    background-color: #0e0e0e;
    color: #ffffff;
    width: 350px;
    height: 400px;
    padding: 10px;
    margin:30px;
    border-radius: 10%;
    font-size: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #b7b7b7;
    font-weight: 700;
}

#AM-PM{
    color: #b7b7b7;
    position: relative;
    height: 0;
    width: 0;
    box-sizing: inherit;
    font-size: 30px;
    top: -5%;
    left: -45%;
}

footer {
    color: #ffffff;
    position: static;
    bottom: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    letter-spacing: 1px;
    font-weight: 100;
    position: absolute;
}
.divisor {
    background-color: #000;
    width: 850px;
    height: 5px;
    position: absolute;
}
a {
    text-decoration: none;
    color: #b7b7b7;
    margin: 5px;
}