
.header {
  background-color: #0b2c64; 
  color: white;
  display: flex;
  align-items: center;
  padding: 15px 40px;
  gap: 15px;
    width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo img {
  width: 50px;
  height: 52px;
}
.logo h1 {
  font-size: 22px;
  line-height: 1.2;
}
.logo h1 span {
  display: block;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 2px;
}

nav {
    background-color: rgb(91, 197, 197);
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
    position: relative;
}
nav a {
    display: block;
    padding: 14px 20px;
    color: rgb(235, 243, 242);
    text-decoration: none;
}
nav a:hover {
    background-color: rgb(45, 146, 146);
}
nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(103, 173, 173);
    display: none;
    min-width: 180px;
    flex-direction: column;
    z-index: 99;
}
nav ul li:hover > ul {
    display: flex;
}
nav ul ul li {
    width: 100%;
}
nav ul ul a {
    padding: 12px 16px;
}


.konten {
  padding: 40px;
  text-align: center
}
.konten {
  width: 100%;
  height: 25pc;
  background-image: url("kantin.jpeg");
  background-size: cover;     
  background-position: center; 
  position: relative;
  width: 100%;
}

.konten img {
  width: 100%;
  height: auto;
  display: block;
}
.konten-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(0,0,0,0.4);
  padding: 15px 15px;
  border-radius: 5px;
  text-align: left;
}

.konten h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
 footer {
  position: fixed;   /* selalu di bawah */
  bottom: 0;         /* tempel ke bawah */
  left: 0;
  width: 100%;       /* full lebar layar */
  text-align: center;
  padding: 15px;
  background: #0b2c64;
  color: #fff;
}
.navigasi ul li a:hover{
  background-color: cornflowerblue;
  color: #fff;
}
