
body {
 font-family: 'Josefin Sans', sans-serif;
 margin: 0;
 padding: 0;
 min-height: 100vh;
 background: url(hospital.jpg) no-repeat center fixed;
}

header {
  background-color: #0081a7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: white;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
nav a {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:active {
color: #003638;
}

nav a:hover {
color: #003638;
}

nav a:focus {
color: #003638;
}

.pIcon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.welcome {
 display: flex;
 justify-content: center;
 gap: 60px;
 padding-top: 2cm;
 padding-bottom: 1cm;
 align-items: center;
}

.welcome-box {
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
}

.welcome-box h2 {
  font-weight: 900;
  font-size: 100px;
  line-height: 2.8cm;
  color: #0081a7;
}

.right-box {
 width: 500px;
 display: flex;
 flex-direction: column;
 align-items: center;
 margin-left: 5cm;
}

.message-box {
 color: #003638;
 text-align: center;
 font-size: 30px;
 line-height: 1.5;
 font-weight: 600;
 max-width: 100%;
 margin-bottom: 20px;
}

.button-group {
  margin-top: 20px;
 display: flex;
 justify-content: center;
 gap: 65px;
}

.button {
 background: #0081a7;
 color: white;
 padding: 16px 40px;
 border-radius: 30px;
 text-decoration: none;
 font-size: 18px;
 transition: background-color 0.3s ease
}

.button:active {
 background: #003638;
}

.button:hover {
  background: #003638;
}

.button:focus {
  background: #003638;
}


.bgcolor {
  background-color: rgb(210, 231, 248, 0.7);
  height: 100%;

}

.names {
 font-size: 14px;
 opacity: 0.9;
 margin: 0px;
}

footer {
  width: 100%;
  background-color: #0081a7;
  color: white;
  text-align: center;
  padding: 20px 0 10px 0;
  position: absolute;
  bottom: 0
}

footer h2 {
 font-size: 20px;
 margin: 0px;
 margin-bottom: 10px;
 font-family: 'Anton', sans-serif;
 letter-spacing: 2px;
 font-weight: 300;
}

.icons {
 display: flex;
 justify-content: center;
 gap: 25px;
 margin-bottom: 20px;
}

.icons img {
 width: 40px;
 height: 40px;
 object-fit: contain;
}

footer p {
 font-size: 14px;
 opacity: 0.9;
}


/* change yung mga "px" formats into other formats para dynamic regardless of screen sizes. (nasisira siya on my end - yung tropa ni leanne)

em - text
% - image, backgrounds, divs, or others in general

yung hover when it comes to Profile section, di siya consistent. (sa home walang hover, pero sa profile meron)
*/