/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
@media screen and (max-width: 500px) {
    .navbar a {
      float: none;
      display: block;
    }
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
}

#main-container {
    position: fixed;
    min-height: 100%;
    width: 100%;
    background-image: url('../img/homepage.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.navbar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    overflow: auto;
}
  
.navbar a {
    float: right;
    display: flex;
    align-items: center;
    /* Height + padding should match img size */
    height: 88px;
    padding: 12px;
    color: #d3b749;
    text-decoration: none;
    font-size: 17px;
}
  
.navbar a:hover {
    background-color: #00000080;
}

.navbar img {
    height: 100px;
}

.header-logo {
    padding-left: 1em;
}

.datetime {
    overflow: hidden;
    margin-left: 2em;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.datetime a {
    float: left;
    text-align: center;
    color: #f2f2f2;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 3em;
}

.text-container {
    position: relative;
    padding: 6em
}

.text-block {
    position: relative;
    margin: 8px;
    padding: 2em;
    /* width: 160px; */
    /* height: 160px; */
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.65);
    text-align: center;
}

.text-block p {
    font-size: 16px;
    color: white;
}

.text-block a {
    font-size: 16px;
    color: white;
}

.widget-data-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 8px;
    font-size: 16px;
}