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

body {
    font-family:serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #184e77;
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

nav {
    background-color: #1e6091;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1abc9c;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0rem 0rem;
    background: linear-gradient(to right, #33964a, #16a085);
    color: white;
}

.hero2 {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    text-align: left;
    padding: 1rem 4rem;
    background: linear-gradient(to right, #33964a, #16a085);
    color: white;
    font-family:Arial, Helvetica, sans-serif;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
}

main {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    text-decoration: none;
    color: #000;
}

.card:hover {
    transform: translateY(-5px);
    color: #1abc9c;

}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

* { box-sizing: border-box; }
        
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}




img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}



.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}



.active, .dot:hover {
  background-color: #717171;
}

.link {
  transition: color 0.3s ease;
  text-decoration: underline;
  color: white;
  font-weight:bold;
}

.link:hover {
  color: rgb(207, 222, 44);
}

#skip-links{
  width: 100%;
  background-color: #000;
  transition: color 0.3s ease;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-left: 10px;
}
#skip-links a{
  color: #f9f9f9;
}
#skip-links :hover{
  color: antiquewhite;
}

