@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
}

.flex-container{
    font-family: 'Roboto', sans-serif;
    background-color: #BAD7E9;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

h1{
    font-size: 3rem;
    color: #2B3467;
}

h2{
    color: #fff;
}


.clock-container{
    height: 150px;
    width: 350px;
    padding: 20px;
    gap: 10px;
    background-color: #2B3467;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    box-shadow: 3px 8px 6px #000;
}

.clock{
    height: 50%;
    width: 50%;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    background-color: #4655a7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 3px 8px 6px #000;

}

.am{
    font-weight: 700;
    color: #fff;
}

.copyright{
    text-align: center;
}