* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-variation-settings:  "wdth" 100;
}


main {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: auto;
    padding: 1rem;
    text-align: center;
}


main .slogan {
    color: #41794D;
    text-align: center;
    font-size: 2rem;
    margin: 0 auto;
    padding: 1rem;
}

main .description {
    color: #265A32;
    text-align: center;
    font-size: 1rem;
    margin: 0 auto;
    padding: 1rem;
}

.open-sans-one {
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }




.about-btn {
    background-color: #41794D;
    color: white; 
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.about-btn:hover {
    background-color: #265A32; 
}

body.background{
    background-color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
}

body {
    margin: auto;
 font-family: 'Arial', sans-serif;
        
}
section, aside{
    padding: 1rem;
}
img, video, embed {
    max-width: 100%;
    height: auto;    
}

article h2{
    color: #000000;
    background-color: rgba(167, 167, 167, 0.15); 
    border-radius: .5rem;
    width: fit-content;
    padding: 0.5rem;
    margin: 0 auto;
    font-size: 1.5rem;
}

article p{
    text-align: center;
    color: #9b9b9b;
    background-color: rgba(56, 56, 56, 0.95); 
    padding: 1rem;
    border-radius: .25rem;
    width: 90%;
    margin: .5rem;
    font-size: 1rem;
    
}

.site-footer {
  background-color: #154821;
  display: flex;
  text-align: center;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
}

.footer-logo img {
  width: 6rem;
  height: auto;
}

.propertyslogen{
    color: #f3f3f3;
    text-align: center;
    font-size: 1.25rem;
}

/* Header container */
header {
  position: relative;
  width: 100%;
  padding-bottom: 3rem;
}

/* Background image */
.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide the checkbox */
.menu-toggle {
  display: none;
}

/* Hamburger label */
        /* Hamburger label */
.hamburger {
    position: absolute;
    top: 1rem; 
    right: 1.25rem;
    font-size: 1.75rem;
    background: rgba(0, 0, 0, 0.0);
    color: white;
    padding: 0.625rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 0.25rem;
    }
  
 /* Navigation menu container */
.nav {
    position: fixed;
    top: 0;
    right: -50%; 
    height: 100%; 
    width: 50%; 
    background-color: #083111; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.9s ease; 
    z-index: 1000; 
}

/* Close button styles */
.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 11; 
    text-decoration: none;
}

/* Show menu when checkbox is checked */
.menu-toggle:checked ~ .nav {
    right: 0; /* Slide in from the right */
}

/* Links styling */
.nav a {
    color: white;
    text-decoration: none;
    padding: 1rem;
    font-size: 1.25rem;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #444;
}

.nav a:last-child {
    border-bottom: none;
}

/* Logo link styling */
.logo-link {
    position: absolute;
    top: 1rem; 
    left: 1rem;
    z-index: 11; 
}

.logo-img {
    width: 10rem; 
    height: auto;
    border-radius: 0.25rem; 
}




/* class stuff */
/* Table styling */
table {
    width: 50%;
    border: 2px solid #41794D;
    border-collapse: collapse;
    margin: auto;
}



/* Table header styling */
th {
    background-color: #41794D;
    color: white;
    padding: 0.1rem;
    border: 2px solid #265A32; 
    text-align: center;
}

/* Table cell styling */
td {
    padding: 0.2rem;
    border: 1px solid #41794D;
    text-align: center;
}

td:hover {
    background-color: #265A32;
    color: white;
}


tr:nth-child(2n) td {
    background-color: #f3f3f3;
}
/* medium screen */
@media screen and (min-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
        max-width: 75rem;
    }
    main {
        display: flex;
        flex-wrap: wrap;
    }
    nav, header {
        order: -1;
    }
    nav {
        flex-direction: row;
    }
    nav a {
        flex: auto;
    }
    article {
        flex: 50%;
    }
    aside, section {
        flex: 100%;
    }
    section p {
        column-count: 2;
        column-gap: 1.25rem;
        column-rule: 1px solid rgb(255, 105, 0);
    }
}

/* large screen */
@media screen and (min-width: 1200px) {
    article {
        flex: 35%;
    }
    aside {
        flex: 30%;
    }
}