body {
    font-family: "Inter", sans-serif;

    width: 100%;
    margin: 0;
    text-align: center;
    background-color: #f0f4f8;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #da4283;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    padding: 0.7rem 0 0.7rem 0;
    margin: 0;
    width: 100%;
    background: linear-gradient(
        305deg,
        #fdd7dd 50%,
        #ffc0cb 50.15%
    );
    transition: all 0.2s ease-in-out;
}

.nav-bar {
    width: 200px;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    font-weight: 800;
    transition: all 0.2s ease-in-out;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    width: 200px;
}

.separator {
    display: none;
    background: rgba(255, 255, 255, 0.87);
    width: 3px;
    height: 20px;
    border-radius: 0.2rem;
    transition: all 0.2s ease-in-out;
}

main {
    margin-top: 2.5rem;
}

.time-container {
    display: flex;
    gap: 4.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    flex-wrap: wrap;
    transition: all 0.2s ease-in-out;
}

h1 {
    color: #334155;
}

.num {
    font-size: 3rem;
    line-height: 1;
    margin: 0;
    color: #334155;
    font-weight: 700;
}

.tag {
    font-size: 1rem;
    margin: 0;
    color: #64748b;
    font-weight: 500;
}

.box {
    /* background: rgb(196, 195, 195); */
    background-color: #ffffff;
    width: 110px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.individual-time-units {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 6rem;
    transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 1101px) {
    header {
        gap: 1rem;
        flex-direction: column;
        background: linear-gradient(
            to top,
            #fdd7dd 34%,
            #ffc0cb 10%
        );
        padding-bottom: 0.8rem;
    }

    .nav-bar {
        width: 300px;
        gap: 2rem;
    }

    .separator {
        display: block;
    }

    .time-container {
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .individual-time-units {
        margin-top: 2rem;
        gap: 0.1rem;
    }

}