body {
    background-color: #ffffff;
    background-image: url("mountain.jpeg");
    background-size: cover;
    height: 100%;
    font-family: 'IBM Plex Sans', sans-serif
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    min-width: 80vw;
    flex-direction: column;
}

#time-container {
    display: flex;
    justify-items: end;
    align-items: center;
    flex-direction: column;
    margin-top: 25px;
    margin-bottom: 25px;
}

#time {
    width: 100%;
    font-size: 64pt;
    color: #000000;
    text-align: center;
    vertical-align: bottom;
    align-self: flex-end;
    margin: auto;
}

#date {
    width: 100%;
    font-size: 16pt;
    color: #000000;
    text-align: center;
    margin: auto;
}

div {
    width: 100%;
}

#search-bar-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

input {
    background-color: #ffffff;
    color: #000000;
}

#search-bar {
    width: 90%;
    border: 0;
    font-size: 24pt;
    padding: 25px;
    box-shadow: 0px 0px 5px 1px #222222;
    color: #000000;
    max-height: 50px;

    transition-duration: 500ms;
    transition-timing-function: ease;
}

#search-bar:focus {
    color: #000000;
    box-shadow: 0px 0px 5px 1px #000000;
}

#links-wrapper {
    margin-top: 25px;
    margin-bottom: 25px;

    width: 90%;
}

#links {
    display: flex;
    flex-flow: row wrap;

    padding: 0;
}

#links > li {
    flex: 1 0 30%;

    list-style-type: none;
    
    margin-top: 15px;
    margin-bottom: 15px;

    margin-left: 15px;
    margin-right: 15px;
}

#links > li > a {
    text-decoration: none;
    border: none;
}


#links > li > a > span {
    background-color: #ffffff;
    display: block;
    font-size: 18pt;
    color: #000000;
    padding: 25px;
    min-width: 100px;
    text-align: center;
    min-width: 150px;

    box-shadow: 0px 0px 5px 1px #222222;

    transition-duration: 200ms;
    transition-timing-function: ease;
}

#links > li > a > span:hover {
    box-shadow: 0px 0px 5px 2px #000000;
}
