body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f5f5f5;

}

header {
    position: relative;
    width: 100%;
    height: 60px;
    background: #fff;
    border-bottom: 2px solid #333;
  }
  
  .logo {
    height: 50px;
  }
  
  nav {
    position: absolute;
    right: 20px;
    top: 50%;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    display: inline-block;
    margin: 0 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }


  
section {
    display: grid;  
    grid-template-columns: 1fr 1fr 1fr 1fr;  
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    height: 80vh;  
}
section img{
  padding-top: 70px;
  width: 80%;
  padding-left: 310px;
  grid-row: 1 / 3;  
  grid-column: 1 / 3; 
}


h1 {
    margin-top: 60px;
  grid-row: 1 / 2;  
  grid-column: 3 / 4; 
}

section p {
  color: rgb(43, 49, 55);
  grid-row: 2 / 5;  
  grid-column: 2 / 5; 
  margin-top: 10px;
}

article {
  grid-row: 3 / 5;
  grid-column: 2 / 5;
}

article p {
  margin-bottom: 15px; 
  margin-top: 15px;
}


article a {
  text-decoration: none; 
  color: #1E90FF; 
  font-weight: bold; 
  transition: color 0.3s, transform 0.3s, background-color 0.3s; 
  padding: 8px 16px;
  border-radius: 5px; 
}

article a:hover {
  color: #FF4500; 
  background-color: #f0f0f0; 
  transform: scale(1.05); 
}

article a:active {
  color: #FF6347; 
  background-color: #d0d0d0; 
}


footer {
    background-color: #333;
    color: white;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}