html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color : #eee;
}


.mg-blog-post-box {
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    background-color: #fff;
}

.small-text {
    font-size: 0.5em;
}

.middle-text {
    font-size: 0.9em;
}

.fixed-height {
    min-height: 230px;
    max-height: 230px;
    overflow: auto; /* If the content exceeds the height, show a scrollbar */
}

a {
    color: inherit;
    text-decoration: none;
}

.disable-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}