html {
    min-height: 100vh;
}

body {
    height: 100%;
    font-family: 'Roboto', sans-serif;;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

#bodyBlur,
#colorBack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#bodyBlur {
    background-image: url("images/Boymont_panorama.wmt.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-filter: blur(1px) grayscale(15%);
    -moz-filter: blur(1px) grayscale(15%);
    -o-filter: blur(1px) grayscale(15%);
    -ms-filter: blur(1px) grayscale(15%);
    filter: blur(1px) grayscale(15%);
}

#colorBack {
    background: rgba(23, 32, 79, 0.57);
}

.navbar-dark .navbar-toggler {
    border: 0px solid;
}

.container {
    height: 100%;
    margin-top: 56px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 96px);
}

section {
    min-height: calc(100vh - 56px);
    width: 100%;
}

.weather {
    width: 100%;
}

.weather-template {
    padding: 3rem 1.5rem;
    text-align: center;
    color: white;
}

.forecasts {
    color: whitesmoke;
}

.forecastCol {
    padding-left: 0px;
    padding-right: 0px;
}

.ft {
    border-bottom: 1px solid #ffffffc7;
}

.mins,
.maxs {
    width: 100%;
    text-align: center;
    border-radius: 3px;
    margin-bottom: 0px;
}

footer {
    width: 100%;
    padding: 0 1rem;
}

#reliability {
    display: none !important;
}

/* Media Queries */

@media screen and (max-height: 568px) {
    .container {
        margin-top: ;
    }
    h1 {
      font-size: 1.5rem;
    }
    h3 {
        font-size: 1rem;
    }
    .lead {
        font-size: 1rem;
    }
    .min-max h5 {
        font-size: 0.75rem;
    }
    .fi {
        width: 65px;
        height: 65px;
    }
    .maxs, .mins {
        font-size: 0.75rem;
    }
  }

