body, html {
    margin: 0;
    -webkit-text-size-adjust: none;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
	height: 100vh;
}

.page-bg {
    top: 0px;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -1;
}

#page-content {
	height: 100vh;
	display: grid;
	grid-template-rows: .25fr auto auto;
}

.page-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background: url("../img/main_site_bg.jpg") no-repeat;
    background-size: cover;
    filter: blur(9px) brightness(0.70);
    transform: scale(1.05);
}

h1 {
    text-align: center;
}

h1, h3, h4 {
    font-family: "Univers Bold";
}

label {
    font-family: "Univers Regular";
}

p, li, span {
    font-family: "Univers Light";
}

input {
    font-family: "Univers Light"
}

input:focus, textarea:focus {
    outline: none;
}


a {
    text-decoration: none;
    color: white;
    font-weight: bolder;
}

*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background: none;
}
*::-webkit-scrollbar-thumb {
  background-color: #c1bdbd;
  border-radius: 20px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media screen and (max-width: 425px) {
    html {
        font-size: 10px;
    }
}

@media screen and (min-width: 426px) and (max-width: 1024px){
    html {
        font-size: 12px;
    }
}

.tooltip .tooltip-text {
  display: none;
  width: 10rem;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  left: -35.3333%;
  top: -22px;
  z-index: 10;
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
