/* Imports a font used on the headers */
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');


body{
    background-color: #ffffff;
    /* Arial is used as it is easier to read */
    font-family: Arial;
    margin: 0;
    padding: 0;
  }

.container{
    /* Creats a large box within the center of a page to hold information */
    /* Color used should work with the scheme of the website while being able to help information stand out easily */
    background-color: rgb(255, 255, 255);
    padding: 20px;
    margin: 0 20%;
    max-width: 2000px;
    /* box-shadow:  10px 5px rgb(163, 158, 158); */
}

/* Needs to be centered here for some reason doesnt work in the container */
h1, h2,.center-text{
    text-align: center;
    margin-top: 0; /*helps to ensure spacing between certain elements isnt massive */

}

/* This is needed? */
.content{
    max-width: 2000px;
}

/* Creates a greyed out text */
.subtle-text{
    color: rgba(95, 93, 93, 0.685);
    margin-bottom: 0.2px;
}

.hero-image{
    /* Refrence for image needs to be added */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/ArielShoot.jpg");

    height: 500px;
    /* Allows for the image to take up the entire width of the screen */
    width: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    object-fit: cover;
  }

  a{
    color: rgb(75, 75, 232);
    text-decoration: none;
  }
  
  a:hover{
    cursor: pointer;
    text-decoration: underline;
  }

  img{
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

  h1{
    font-size: 35px;
    font-family: "Fijalla One";
  }
  h2{
    font-size: 28px;
    font-family: "Fijalla One";
  }

