/* lora-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/lora-v32-latin-regular.eot'); /* IE9 Compat Modes */
    src: url('/fonts/lora-v32-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/fonts/lora-v32-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('/fonts/lora-v32-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('/fonts/lora-v32-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/fonts/lora-v32-latin-regular.svg#Lora') format('svg'); /* Legacy iOS */
  }
  
  /* lora-italic - latin */
  @font-face {
    font-display: swap;
    font-family: 'Lora';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/lora-v32-latin-italic.eot'); /* IE9 Compat Modes */
    src: url('../fonts/lora-v32-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/lora-v32-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/lora-v32-latin-italic.woff') format('woff'), /* Modern Browsers */
         url('../fonts/lora-v32-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/lora-v32-latin-italic.svg#Lora') format('svg'); /* Legacy iOS */
  }

  @font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/lato-v23-latin-ext_latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('/fonts/lato-v23-latin-ext_latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/fonts/lato-v23-latin-ext_latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('/fonts/lato-v23-latin-ext_latin-regular.woff') format('woff'), /* Modern Browsers */
         url('/fonts/lato-v23-latin-ext_latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/fonts/lato-v23-latin-ext_latin-regular.svg#Lato') format('svg'); /* Legacy iOS */
  }

/* lato-700 - latin-ext_latin */
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v23-latin-ext_latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/lato-v23-latin-ext_latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/lato-v23-latin-ext_latin-700.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/lato-v23-latin-ext_latin-700.woff') format('woff'), /* Modern Browsers */
         url('../fonts/lato-v23-latin-ext_latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/lato-v23-latin-ext_latin-700.svg#Lato') format('svg'); /* Legacy iOS */
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Main Text */
body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    background-color: #3c82c3;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header h1 {
    font-family: 'Lato', sans-serif;
    margin-bottom: 10px;
    font-size: 1.5em;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
    font-family: 'Lato', sans-serif;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    max-width: 960px;
    margin: 0 auto ;
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 120px;
}

h2 {
    margin-top: 20px;
    font-size: 1.8em;
    font-weight: 400;
    color:#333;
}

h3 {
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-size: 1em;
    font-weight: 400;
}

p {
    margin-top: 10px;
    font-size: 1.2em;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, o, 0.1);
    border-top: 1px solid #ccc;
}

.footer__copyright {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #333;
    padding: 10px 0;
  }
