:root {
  /* Color Palette */
  --primary-color: #3c10e1;
  --secondary-color: #856036;
  --text-color: #010006;
  --link-color: #3c10e1;
  --link-hover-color: green;
}

html {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: Helvetica Neue, Arial, sans-serif;
  color: #fffbfb;
  overflow: hidden;
  text-align: center;

  /* Comprehensive Flexbox Centering */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  /* Typography */
  color: #010006;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: calc(16px + 1vw);
  padding: 1em;
}

/* Responsive Typography */
@media screen and (min-width: 800px) {
  body {
    font-size: 24px;
  }
}

/* Div Styling */
.div1 {
  background-color: white;
  align-items: center;
  align-content: left;
  margin: 5px 10px;
}

/* Universal Box Sizing */
* {
  box-sizing: border-box;
}

/* Links */
a {
  color: #3c10e1;
  text-decoration: none;
}

a:hover {
  color: #3c10e1;
}

/* Centered Cover */
.centered-cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;

  width: 100%;
  height: 100vh;
}

/* Images */
img {
  max-height: 100%;
  max-width: 100%;
  display: block;
}

/* Centering Utility */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* Typography */
h1 {
  line-height: 1.5;
  margin: 0.5em 0;
}

p {
  font-family: 'Droid Serif', serif;
  line-height: 1.5;
  margin: 0.5em 0;
  color: black;
  overflow: initial;
  text-align: left;
}

/* Containers */
.container {
  max-width: 800px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* Link Variations */
A.aclinks {
  font-family: Arial, Helvetica, Sans-Serif;
  color: black;
  font-size: 14pt;
  text-decoration: none;
  font-weight: bold;
}

A.aclinks:hover {
  color: green;
  font-size: 14pt;
  text-decoration: underline;
}

body {
  /* Base Reset */
  margin: 0;
  padding: 0;
  
  /* Background and Color */
  background: #fff;
  color: #010006;
  
  /* Typography */
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-size: calc(16px + 1vw);
  text-align: center;
  
  /* Overflow and Scrolling */
  overflow: hidden;
  
  /* Flexbox Centering (Cross-Browser) */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  
  /* Padding */
  padding: 1em;
  
  /* Responsive Typography */
  @media screen and (min-width: 800px) {
    font-size: 24px;
  }
  
  /* Additional Browser Compatibility */
  -webkit-overflow-scrolling: touch;
}