/* Basic CSS Boilerplate */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  height: 100%;
  width: 100%;
}

#main {
  height: 100%;
}

#nav {
  height: 100px;
  width: 100%;
  /* background-color: rgb(233, 22, 22); */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  padding: 0 30px;
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

#nav h4 {
  font-size: 20px;
}

#nav i {
  background-color: black;
  color: wheat;
  padding: 10px;
  font-size: 20px;
  border-radius: 50%;
}

#centre {
  width: 100%;
  font-weight: 500;
  padding: 0 50px 0 50px;
}

#centre h1 {
  font-size: 55px;
  font-weight: 500;
  color: black;
  line-height: 1.2;
}

#centre_in {
  height: 150px;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}

#centre_in p {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
}

#right {
  width: 20%;
}

.elem {
  margin: 5px;
  padding: 9px 0;
  border-top: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.elem i {
  font-size: 20px;
  font-weight: 500;
  opacity: 0;
}

.elem a {
  font-weight: 400;
  text-decoration: none;
  color: black;
}

.elem:hover i {
  opacity: 1;
}

.elem:hover {
  background-color: rgb(247, 244, 244);
}

.elem a:hover {
  text-decoration: underline;
}

#bottom {
  height: 39% ;
  width: 100%;
background-image: url("https://images.unsplash.com/photo-1619278506986-5e3c700b524a?w=1920&auto=format&fit=crop&q=100&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTJ8fGdpcmwlMjBtb2RlbCUyMGluZGlhbnxlbnwwfDB8MHx8fDA%3D");
  background-size: cover;
  background-position: 0 45%;
  background-repeat: no-repeat;

}

