@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Light.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Abhaya Libre';
    src: url('../fonts/AbhayaLibre-Medium.ttf');
    font-display: swap;
}

body, ul, li, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #fff; /* White background */
    color: #000; /* Black text color */
    padding: 20px;
}

header {
    background-color: #000; /* Black header background */
    color: #fff; /* White text color */
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 5px
}

footer {
    background-color: #000; /* Black header background */
    color: #fff; /* White text color */
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 5px
}

h1, h2 {
    font-family: 'Abhaya Libre', serif;
}

h1 {
    font-size: xx-large;
}

nav ul {
    list-style-type: none;
    display: flex;
    font-family: 'Abhaya Libre', serif;
}

nav ul li {
    margin-right: 20px;
    padding-top: 5px;
}

nav a {
    text-decoration: none;
    color: #fff;
    transition: 0.2s
}

nav a:hover {
    color: #ff8c00
}

section {
    margin: 20px 0;
    padding: 10px 40px;
    border: 1px solid #636363;
    border-radius: 5px; 
    box-shadow: 0 4px 6px rgba(71, 71, 71, 0.1)
}

p {
    margin-bottom: 10px;
}

button {
    background-color: #fff; 
    border: none;
    border-radius: 3px;
    height:2em;
    color: #000;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'Abhaya Libre', serif;
    transition: 0.2s
  }

  button:hover {
    background-color: #ff8c00;
  }