/* // $black: #000000;
// $dark-grey: #242729;
// $charcoal-grey: #343638;
// $charcoal-grey-two: #414448;
// $gunmetal: #505357;
// $battleship-grey: #6e757a;
// $very-light-grey: #dfdfdf;
// $very-light-grey-two: #f0f0f0;

// $azure: #0197ff;
// $light-blue: #b3e0ff;

// $red: #ff3131;
// $pink: #ffe5e5; */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  /* background-image: url("./assets/back.jpg");
  height: 100%; 
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; */

  background: url("./assets/back.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
    position: relative;
    /* background: #242729; */
    font-family:Arial, Helvetica, sans-serif;
    color: black;
    padding: 20px;
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

.bg {
  position: absolute;
    top: 0px;
    left: 0px;
  background-image: url("./assets/back.jpg");
  height: 100%; 
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.content {
  background-color: white;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    /* height: calc(100% - 100px); */
    padding: 50px;
    /* min-height: 620px; */
}

h1 {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 36px;
}

a {
    color: #008b8b;
    /* text-decoration: none; */
}

ul {
    list-style-type: square;
    color: #dfdfdf;
}
li {
  color: black;
}

hr {
    margin-bottom: 20px;
}

h3 {
    margin-bottom: 5px;
    margin-top: 40px;
    font-size: 1.5em;
}

h4 {
  margin-top: 30px;
}

p{
  /* color: #008b8b; */
  margin-bottom: 10px;
}

.desc {
  color: #008b8b;
}