main
{
    user-select: none;
}
/*LOGO*/

#image
{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#image > img
{
    border-radius: 15px;
}

/*Start Card*/

.startCard
{
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f1f9ff;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.startCard > a > .startCardContent
{
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
}

.startCard > a > .startCardContent:hover 
{
    transform: translateY(-5px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.startCardContentTitle
{
    font-size: 18px;
    margin-bottom: 10px;
    color: #0077b6;
}

.startCardContentDescription
{
    font-size: 14px;
    color: #333;
}

/*Container*/

.container
{
    margin: 30px auto;
    max-width: 1100px;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.container > a:link , .container >a:visited
{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f9ff;
    width: 170px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: #0077b6;
}


#info 
{
    text-align: center;
    border-radius: 15px;
    padding-top: 20px;
    min-width: 100px;
    max-width: 300px;
    height: 100px;
}

.digitalClock 
{
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

.dateDisplay 
{
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

#know
{
    text-align: center;
    max-width: 1020px;
    margin: 20px auto;
    padding: 10px;
    background-color: #f1f9ff;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    color: #0077b6;
}


@media screen and (max-width:600px) 
{
    #image img
    {
        width: 300px;
    }
}

@media screen and (max-width:244px) 
{
    .digital-clock 
    {
        font-size: 1rem;
    }
}