@charset "UTF-8";

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 110px 0 0px 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  min-height: 100vh;
  line-height: 1.8rem;
  background-image: url("../img/back.jpg");
  background-size: cover;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translate(-50%, -50%);
}
/* Navigation */
.navbar a {
  color: orangered;
  text-decoration: none;
  font-size: 1.2rem;
}
.navbar a:hover {
  color: rgb(255, 128, 0);
}
.active {
  color: rgb(255, 13, 0);
}
.bottom-nav {
  max-height: 35px;
}
.bnav {
  padding-top: 12px;
  font-size: 0.75rem;
  font-style: italic;
  color: #ccc;
}

.carousel,
.card {
  border-radius: 8px;
  border: 1px solid rgb(125, 81, 134);
}
.page {
  color: rgb(255, 94, 0);
  font-size: 1rem;
  font-style: italic;
}

.glass {
  background-color: rgb(255, 94, 0);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    rgba(224, 224, 224, 0.2),
    rgba(224, 224, 224, 0.2)
  );
}
