@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

body {
    background: url('/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clock {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    box-shadow: 2px 4px 8px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    text-align: center;
    color: #84b8c4;
    font-family: Orbitron, sans-serif;
    border: none;
}

.dateDay {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.time {
    font-size: 100px;
    letter-spacing: 7px;
    font-weight: 600;
}

.date {
    font-size: 34px;
    margin-top: 10px;
}

.day {
    font-size: 34px;
    margin-top: 10px;
}