.body{
    background-image: url(bg.jpg);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px
}

.inputcont{
    width: 400px;
    height:50px;
    display:flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom,rgb(4, 0, 255), rgb(0, 255, 34));
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.input{
    width:370px;
    height: 40px;
    border: none;
    outline: none;
    caret-color: rgb(255,81,0);
    background-color: white;
    border-radius: 30px;
    padding-left: 15px;
    letter-spacing: 0.8px;
    color:rgb(19,19,19);
    font-size: 14px;

}

.clock{
    font-size: 50px;
    color: antiquewhite;
    text-shadow: 2px 2px 10px rgba(0,0,0,1);
    letter-spacing: 4px;
}

.bookmarks{
    display: flex;
    margin: 15px;
    gap: 15px;
}

.bookmark_btn{
    color: antiquewhite;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: background 0.2s, transform 0.2s;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-variant: small-caps;
}

.bookmark_btn:hover{
    background: rgba(0, 0, 0,1);
    transform: translateY(-2px);
}

.greeting{
    font-size: 20px;
    color: antiquewhite;
    margin-bottom: 5px;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}


.calendar_card{
    margin-top: 20px;
    background: rgba(0,0,0,0.5);
    color: antiquewhite;
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    width: 260px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    text-align: center;
}

.calendar_header h2 {
    font-size: 16px;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

.calendar_weekdays{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-size: 12px;
    font-weight: bold;
    color: rgba(0, 0, 0,1);
    margin-bottom: 5px;
}

.calendar_days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 6px;
    font-size: 13px;
}


.calendar_day{
    padding: 4px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.current_day {
    background: rgba(0, 0, 0,1);
    color: antiquewhite;
    font-weight: bold;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: auto;
}

@media (max-width: 600px) {
    .body {
        gap: 20px;
        padding: 10px;
    }
    .clock {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .greeting {
        font-size: 16px;
    }

    .inputcont {
        width: 90vw;
        max-width: 350px;
        height: 45px;
    }

    .input {
        width: 82vw;
        max-width: 320px;
        height: 35px;
        font-size: 13px;
    }
    .bookmarks{
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px
    }

    .calendar_card {
        width: 85vw;
        max-width: 240px;
        padding: 10px
    }
}