html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.steam-icon-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.moving-icon {
    position: absolute;
    opacity: 0.5;
    color: rgba(108, 117, 125, 0.1); /* Light gray with transparency */
    /* transform: rotate(45deg); */
    animation: floatUpward 30s linear infinite;
    width: 32px;
    height: 32px;
    filter: invert(14%) sepia(83%) saturate(5895%) hue-rotate(2deg) brightness(107%) contrast(123%);
}

@keyframes floatUpward {
    from {
        transform: translate(0, 100vh);
    }

    to {
        transform: translate(100vh, -100vh);
    }
}