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

body {
  color: #000000;
  font: Montserrat, sans-serif;
  background-color: #000000;
  padding-bottom: 300px;
}

nav {
  background-color: #060606;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  box-shadow: 0 2px 5px rgb(0, 0, 0);
}

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

 a:hover {
  color: #60c84b;
}

header {
  height: 800px;
  margin-bottom: 100px;
  color: aliceblue;
  background: url("img/main.jpg") no-repeat center/cover;
}

h1 {
  padding: 60px 0 0 150px;
  margin: 20px 0 0 0;
  text-align: start;
  font-size: 11rem;
  color: white;
}

.subtext {
  font-size: 20px;
  color: #fff;
  text-align: start;
  margin-left: 180px;
  justify-content: center;
  padding-top: 0;
}

section {
  min-height: 100vh;
  padding: 40px;
  text-align: right;
  width: 100%;
}

p {
  font-size: 20px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 50px;
}

.card {
  background-color: #fffffff1;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(250, 244, 244, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* a {
  text-decoration: none;
  color: rgb(122, 123, 136);
}  */

.img-card {
  border-radius: 10px;
  padding-top: 20px;
}

footer {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content:space-between;
  gap: 500px;
  bottom: 0;
  width: 100%;
  margin-top: 45px;   
    line-height: 1.4;
  justify-content: center;
  padding: 20px 30px;
  background-color: #060606;
  color: aliceblue;
}

.footer-content {
  max-width: 1200px;
  width: 100%;
  gap: 40px 80px;
  line-height: 1.6;
}
  footer a {
   color: #60c84b;
 } 

.social {
  grid-area: social;
  gap: 15px;
  margin-top: 40px;
}

.social-icon img {
  width: 30px;
  height: 30px;
margin-left: 20px;
 gap: 30px;
}