@font-face { 
    font-family: "Poppins"; 
    src: url("/fonts/Poppins-Regular.ttf"); 
    }

:root{
    --main-brand-color: #297AE3;
    --primary-color: #15171C;
    --secondary-color: #232933;
    --light-secondary-color: #2E3744;
    --text-color: white;
    --secondary-text-color: #B3B4B6;
}

.lightmode{
    --main-brand-color: black;
    --primary-color: white;
    --secondary-color: #808081;
    --light-secondary-color: #dcd1d1;
    --text-color: #111528;
    --secondary-text-color: #B3B4B6;
}



*{
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background-color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: var(--text-color)
}

h1{
    font-size: 60px;
    line-height: 115%;
}

h3{
    font-size: 38px;
}

a {
    margin: 0px 0px 0px 15px;
    color: var(--text-color);
  }

#scrollToTopButton{
    position: fixed;
    font-style: normal;
     bottom: 10px;
     right: 10px;
     z-index: 99;
     font-size: 15px;
     border: none;
     outline: none;
     background-color: var(--text-color);
     color: red;
     cursor: pointer;
     padding: 12px;
     padding: 12px;
     border-radius: 4px;
     font-size: larger;
     display: none;
}

.subheading{
    margin-top: 25px;
    color: var(--text-color);
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }

  th {
    color: var(--main-brand-color)
  }
  
  tr:nth-child(even) {
    background-color: var(--primary-color);
  }

@media(max-width: 800px) {
    h1 {
        font-size: 8vw;
        text-align: center;
    }
    .subheading {
        text-align: center;
    }
    body{
        font-size: 16px;
    }
}