
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.container {
  font-weight: 400;
  font-size: 1rem;
  max-width: 1200px;
  margin: 0 auto;  
}

h1 {
  font-weight: 700;
  font-size: 3rem;  
}

nav {
  font-weight: 500;
  font-size: 1.25rem;
  content : "Navigation"
}

nav ul {
  font-weight: 400;
  font-size: 1rem;
  display: flex;
  gap: 1rem;
  list-style: none;  
}

nav ul li {
  font-weight: 600;
  font-size: 1.5rem;
}

nav ul li a {
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  color: black;
}

.active-page {
 
  color: red;
}

.content {
 display: flex;
 width: 100%;
 gap: 1rem;
}

.card {
  width: 100%;
}

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}

.reverse-color  a{ 
  color: white;
  text-decoration:dotted;
}

li {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}

.lead{ 
  font-weight: 300;
  font-size: 1.25rem;
}

.image-container{
  margin-top: 3rem;
  width: 100%;
  background-color: #ccc;
}

img {
  width: 100%;
  
  object-fit: cover;
}

.reverse-color {
  color: white;
  background-color: black;
  padding: 1rem;
   
  padding-top: 0;
}

.services-list {
  list-style: none;
  line-height: 2;
  font-weight: 700;
  font-size: 2.25rem;
}

.services-list li a {
  text-decoration: none;
  color: grey ;
    font-weight: 700;
  font-size: 1.5rem;

}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.logo {
  font-weight: 900;
  font-size: 2rem;
 font-style: italic;
}
.nav-buttton{
  display: none;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .content {
    flex-direction: column;
  }

  .card .reverse-color {
    padding-right: 1rem;
  }

  nav {
    display: none;
  }

  .active{
    display: block;
  }

  .nav-buttton{
    font-size: 3rem;
    font-weight: 900;
    display: block;
  }

  body {
    font-weight: 400;
  }
}