@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Monoton', cursive;
}

body {
    height: 100vh;
    background: linear-gradient(to top, #0c0580 0%, #e4322e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: linear-gradient(to top, #0c0580 0%, #8015fc 10%, #e4322e 50%, #f7eb00 100%);
    height: 600px;
    width: 600px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .reloj {
    color: #f7eb00;
    font-size: 6rem;
}

.footer {
    position: absolute;
    top: 85%;
    left: 80%;
    color: #e4322e;
    font-size: 1rem;
    text-align: center;
}

