/* FILEPATH: c:\Users\Minag\OneDrive\Desktop\Scripts\style.css */
/* BEGIN: 5f1b6c8d7a4c */

/* Global styles */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-weight: bold;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

header h1 {
    margin: 0;
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: right;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: #f94e33;
    color: white;
  }

/* Main styles */
main {
    margin: 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

section p {
    margin-bottom: 20px;
}

section ul li {
    margin-bottom: 10px;
}

section ul li strong {
    font-weight: bold;
}

section img {
    display: block;
    margin: 0 auto;
    max-width: 50%;
    height:auto
}

section article {
    margin-bottom: 40px;
}

section article h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

footer ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

footer ul li {
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

/* END: 5f1b6c8d7a4c */