
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: rgb(16, 5, 5);
}


.logo-div {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: flex-start; 
  align-items: center;
}


.logo-img {
  width: min(30%,300px); 
  height: auto;
}


.banner-div {
  width: 100%;
  display: flex;
  justify-content: center; 
  align-items: center;
  padding: 20px;
}

.banner-img {
  width: min(80%, 700px);  
  height: auto;
  border-radius: 12px;     
}

.nav-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    position: relative;
}

footer {
  color: white;
  text-align: center;
}


