:root {
    --main-yellow: #ffe351;
    --main-black: #010101;
    --main-white: #fffefe;
    --secondary-yellow: #DDBA04;


}
body {
    background-color: var(--main-black);
}
/* Targetting all heading tags (h1, h2, h3, etc.) */
h1, h2, h3 {
    color: var(--main-white); /* Changes the text color to white */
    margin-bottom: 20px; /* Adds space below the headings */
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    text-align: center;
    flex: 1;
  }
  
  /* Targetting all paragraph tags */
  p {
    font-size: 16px; /* Changes the font size */
    line-height: 1.5; /* Adjusts the line spacing for better readability */
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    color: var(--main-white);
  }
  
  /* Targetting all anchor tags (links) */
  a {
    color: var(--main-yellow); /* Sets a purple color for links */
    text-decoration: none; /* Removes the underline from links */
  }
  
  /* Targetting links when hovered over with the mouse */
  a:hover {
    color: var(--secondary-yellow); /* Changes the link color on hover */
    text-decoration: underline; /* Adds an underline on hover */
  }

  .header_bar {
    /*background-image: linear-gradient(var(--main-black), #361398, #361398, #361398, var(--main-black));*/
    height: 100px;
    margin-bottom: 50px;
    display: flex;
  }
  
  .header_bar img {
    max-width: 100%;
    max-height: 100%;
  }