*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: url('./future.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    object-fit: contain;
    height: 100vh;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

main{
    display: flex;
    justify-content: center;
    height: 70vh;
    align-items: center;
}

main article{
    background: rgb(255, 255, 255);
    display: flex;
    height: 40vh;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
}

.left{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left h1{
    font-size: 2.5rem;
    font-weight: 800;
    font-style: italic;
}

.left div{
    display: flex;
    flex-direction: column;
    gap: 10px
}

.left div a{
    text-decoration: none;
    width: fit-content;
    background-color: rgb(26, 105, 174);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;

}

.left div p{
    opacity: 0.6;
}

.right{
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 2px solid rgb(0, 0, 0);
    padding-left: 30px;
    width: 50%;
}

.right h2{
    
    opacity: 0.9;
    color: rgb(21, 80, 198);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#clock {
    font-family: 'Arial', sans-serif;
    color: #f9f2f2;
    font-size: 48px;
    text-align: center;
    /* margin-top: 2%; */
}