* {
    font-family: 'Urbanist', sans-serif;
}
div, p, span {
    font-weight: 300;
}
b, strong, h1, h2, h3, h4, h5, h6 {
font-weight: 600;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}
body > * {
    width: 100%;
}
body > #content {
    flex: 1;
}

a, a:link, a:visited, a:hover {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

input,textarea,select {
    outline: none;
}

.loader {
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #04939e; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s ease-in-out infinite;
    margin: 10px auto;
}
  
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bgimage {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-color: gray;
    background-attachment: fixed;
}

blockquote {
    background-color: beige;
    margin: 0;
    padding: 1px 20px;
}

.thin-container {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}
.xthin-container {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}