/* APPLIES TO ALL ELEMENTS */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.content {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg, #08001f, #30197d);
    color: #fff;
    position: relative;
}

 .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
    padding-top: 40px;
}
 .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #f09312;
    transform: translateX(-50%);
}

.container {
    width: 800px;
    height: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.container-2 {
    height: 50px;
    width: 150px;
    position: absolute;
    top: 20%;
    left: 70%;
    transform: translate(-20%, -70%);
    padding: 20px;
    font-size: 20px;
}
.container-2 i {
    font-size: 24px;
    margin: 0;
    margin-bottom: 10px;
    margin-left: 10px;
}


.clock {
    width: 100%;
    height: 100%;
    background: rgba(235, 0, 255, 0.11);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(40px);
}

.container::before {
    content: '';
    width: 180px;
    height: 180px;
    background: #dc8809;
    border-radius: 5px;
    position: absolute;
    left: -50px;
    top: -50px;
    z-index: -1;
}

.container::after {
    content: '';
    width: 180px;
    height: 180px;
    background: #f41b75;
    border-radius: 5px;
    position: absolute;
    right: -30px;
    bottom: -50px;
    z-index: -1;
}


#show {
    font-size: 80px;
    
}

.clock::after {
    content:'HOURS    :    MINUTES    :   SECONDS';
    z-index: -1;
    padding-top: 110px;
    position: absolute;
    padding-right: 10x;
    font-size: 20px;
}

