@font-face {
  font-family: 'F1-regular';
  src: url('../fonts/Formula1-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'F1-black';
  src: url('../fonts/Formula1-Black.ttf') format('truetype');
}
@font-face {
  font-family: 'F1-bold';
  src: url('../fonts/Formula1-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'F1-wide';
  src: url('../fonts/Formula1-Wide.ttf') format('truetype');
}
html{
  font-family: F1-regular, sans-serif;
}

body{
  margin:0px;
  
  scrollbar-width: thin;
  scrollbar-color: red white;
  padding-bottom: 200px;
}
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: red; 
}

.bg-img{
  filter:grayscale(100%);
  position: fixed;
  object-fit:contain;
  left:0;
  right:0;
  top:0;
}
.submit-btn{
  width:200px;
  height:50px;
  color: grey;
  z-index: 1;
}
.page-title-container{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-title{
  font-family: F1-bold;
  font-size: 40px;
  background-color: black;
  color: white;
  text-align: center;
  padding:15px 25px 10px 25px;
  position:relative;
  z-index:2;
  top:-40px;
}
.header{
  position: relative;
  top:0;
  width: 100%;
  background-color: black;
  height: 88px;
  background-color: white;
}
.header-img{
  width:100%;
  height: 100%;
  filter: grayscale(50%);
}
.no-scroll {
  overflow: hidden;
}

.tooltip {
  position: fixed;
  display: flex;
  cursor: pointer;
  font-family: "F1-bold", sans-serif;
  justify-content: center;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tooltip-text {
  visibility: hidden;
  width:300px;
  background-color: rgba(0,0,0,0.9);
  color: #E10600;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: 125%;
  
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

.tooltip .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color:#E10600;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
}
.tooltip-text-body{
  margin-left:-20px;
  list-style-type: square;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.tooltip-text-body li{
  text-align: left;
  color: #fff;
  font-family:"F1-regular", sans-serif;
}