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

body {
    font-family: Arial, sans-serif;
    color: #FFF;
    background-color: #ffffff;
}

header {
    padding: 1rem;
    background-color: #ffffff;
    
}

.nav-wrapper {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}

nav {
    display: flex; /* Add this line to display menu items horizontally */
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px;
   }

nav a {
    display: inline-block;
    margin-left: 20px;
    color: #555555;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    color: #cd4236; /* Change the nav menu links color to #cd4236 when hovered */
}


.hero {
    margin-top: 40px;
    position: relative;
    background-image: url('bg_og.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    color: #333;
    font-size: 3em;
    text-align: center;
}

.hero p {
    
    font-size: 1.5em;
    text-align: center;
    margin-top: 1em;
}

.intro {
    
    color: #333; /* Change the text color to dark gray */
    background-color: rgba(240, 240, 240, 0.7); /* Light gray translucent background */
    padding: 1rem; /* Add some padding to create space between the text and the background edges */
    border-radius: 5px; /* Add a border radius to round the corners of the background */
}


main {
    padding: 2rem;
    background-color: #ffffff;
    color: #000;
}

.filter {
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.grid a {
  color: white;
  text-decoration: none;
}


.grid div {
    background-color: #7dd5cf;
    border-radius: 5px;
    padding: 1rem;
    transition: transform 0.3s;
    text-align: center;
}

.grid div:hover {
    background-color: #f16c3e;
    transform: translateY(-10px);
}

.project-img {
    max-width: 100%;
    height: auto;
}

button {
    background-color: #cd4236;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

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


footer {
    padding: 1rem;
    background-color: #1c2f34;
    text-align: center;
}

footer a {
    color: #d3d3d3; /* Very light gray color */
    text-decoration: none; /* Remove the underline */
}

footer a:hover {
    color: #cd4236; /* Change the link color to #cd4236 when hovered */
}

