@import url('containers.css');
@import url('buttons.css');
@import url('blocks.css');
@import url('header.css');

@font-face {
  font-family: 'Jakarta';
  src: url('/static/fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

html, body {
  min-height: 100vh;
  max-height: 100vh;
  padding:0;
  margin:0;
  background-color: #F7F7F7;
}

body {
  font-family: 'Jakarta';
  display: flex;
  flex-direction: column;
}

header {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1b1464;
  padding: 0em 1em;
  margin: 0 0 20px;
  color: white;
}

.scroll-padding { /* FIX THIS LATER from SIMPLE PADDING to FADING AWAY CONTENT */
  z-index: 100;
  height: 20px;
  background-image: linear-gradient(#F7F7F7,rgba(255, 255, 0, 0));
}

main {
  font-family: 'Jakarta';
  background-color: #F7F7F7;
  color: #565656;

  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* Custom scrollbar styling */
  scrollbar-width: thin; /* Firefox - makes scrollbar thinner */
  scrollbar-color: #c1c1c1 transparent;
}

.centered-title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; 
}