/* Creates color variables (accessed via: var(--main-color) etc.)*/
:root{
    /* --main-color: #29487D;
    --side-color: #1DA1F2; */
    --text-color: #ffffff;
}

body, html{    
    min-width: 800px;
    background: white;  /* fallback for old browsers */

     margin:0px;
     /* height: 100%; */
     font-family: Arial, sans-serif; /* Orig Segoe UI Symbol */
     height: 100vh;
     width: 100%;
     background-position: center;
     background-repeat: repeat;
     background-size: cover;
     background-size: fill;
    
     /* Added smooth scrolling so that when using "bookmarks" it doesn't instantly teleport you */
     scroll-behavior: smooth;
}

.title{
  margin-top: 1%;
}
/* Customizes the scrollbar */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border: 3px solid transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Navigation Bar */
#nav {
    background-color: #400000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #400000, #424242);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #424242, #400000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-bottom: 2px solid #424242; /* Specify border color and style */
}

.navbar {
    position: sticky;
    top: 0;
    display:flex;
    overflow:hidden;
    justify-content: center;
    height: 100px;
  }

  .navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 25px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.5s ease;
  }
  
  .navbar a:hover{
    background: white;
    color: black;
    border-radius:5px;
  }

  .btn{
    background-color: #400000;
    margin-top: 20px;
  }

section  {
  margin:0em 10em 10em 10em;
  padding:3em 10em 3em 10em;
}

.contain{
  margin-left: 10%;
  margin-right: 10%;
}

body a{
  /* Remove underline and default text color */
  text-decoration: none;
  color: inherit;
}

h1{
  color: #111; 
  font-size: 70px; 
  /*font-weight: bold; */
  letter-spacing: -1px; 
  text-align: center;
  padding: 0;
  margin: 0;
}

p {
  color: black;  
  font-size: 25px; 
  line-height: 1.5;
}

hr {
  background-color: #000;
}

/* Body Text */

main{
  opacity: 0.3;
}