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 {
    font-family: 'Segoe UI Symbol', Arial, sans-serif;
    margin-bottom: 60px;
    background: rgb(0,0,8);
    background: linear-gradient(354deg, rgb(181 200 178 / 31%) 0%, rgba(255, 255, 255, 1) 100%);
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes scaleAnimation {
    to {
        transform: scale(1.2);
    }
}

@keyframes scaleTextAnimation {
    to {
        transform: scale(1.1);
    }
}

.selected:hover {
    background-color: #8cbbff;
    color: #f5f5f5;
}

div {
    animation: fadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
    font-size: 2rem;
    position: relative;
    top: 16px;
}

.log-out {
    position: fixed;
    right: 30px;
    z-index: 1;
}

.settings {
    position: fixed;
    right: 90px;
    z-index: 1;
}

img:hover, a:hover {
    transform-origin: center;
    animation: scaleAnimation 200ms ease-in-out forwards;
}

div .selected:hover {
    color: black;
    transform-origin: center;
    animation: scaleTextAnimation 200ms ease-in forwards;
}