body {
    background-color: #bfeef4;
    background-image: radial-gradient(#8c8c8c 8%, transparent 8%);
    background-size: 40px 40px;

    font-family: Verdana, sans-serif;
    color: #3b3b3b;

    margin: 0;
    padding: 30px;
}

.container {
    width: 1000px;
    margin: auto;
}

header {
    background: white;
    border: 4px solid #ffffff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0px 0px 12px rgba(0,0,0,.15);
}

header h1 {
    margin: 0;
    color: #4f8fa6;
}

header p {
    margin-top: 10px;
}

.content {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.sidebar {
    width: 220px;

    background: white;
    border-radius: 20px;
    padding: 20px;

    box-shadow: 0px 0px 12px rgba(0,0,0,.15);
}

.sidebar h2 {
    margin-top: 0;
    color: #4f8fa6;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin: 15px 0;
}

.sidebar a {
    color: #4f8fa6;
    text-decoration: none;
    font-weight: bold;
}

.sidebar a:hover {
    color: #78bfd6;
}

main {
    flex: 1;

    background: white;
    border-radius: 20px;
    padding: 20px;

    box-shadow: 0px 0px 12px rgba(0,0,0,.15);
}

main img {
    width: 100%;
    border-radius: 15px;
    margin-top: 15px;
}

footer {
    margin-top: 20px;

    background: white;
    border-radius: 20px;

    padding: 20px;
    text-align: center;

    box-shadow: 0px 0px 12px rgba(0,0,0,.15);
}
.banner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px;

    border-radius:30px;

    background:linear-gradient(
        to bottom,
        #ffffff,
        #eaf8ff
    );

    border:4px solid #d6ecff;

}

.banner-center{

    text-align:center;

    flex:1;

}

.banner-center h1 {

    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 60px;

    color: #eaf6ff;

    -webkit-text-stroke: 4px #7aa7d9;

    text-shadow:
        0 -2px 0 rgba(255,255,255,.7),
        6px 6px 0 #7aa7d9,
        12px 12px 0 #bcd9f2;

    filter: drop-shadow(0 0 8px rgba(62, 176, 130,.8));

    letter-spacing: 2px;

    margin: 0;

}

.banner-center p {

    margin-top: 10px;

    letter-spacing: 4px;

    font-size: 14px;

    text-transform: uppercase;

    color: #3EB082;

}

.banner-left,
.banner-right{

    font-size:40px;

}
.box {

    background-image: url("water.jpeg");

    background-size: cover;

    background-position: center;

    border-radius: 20px;

    padding: 20px;

    margin-bottom: 20px;

    box-shadow: 0px 0px 12px rgba(0,0,0,.15);

    color: white;

    border: 3px solid rgba(255,255,255,.5);

}

.box h2 {

    background: rgba(144, 191, 195,.85);

    display: inline-block;

    padding: 8px 16px;

    border-radius: 50px;

    color: #339b7c;

}



.box img{

    width:100%;

    border-radius:15px;

    margin:15px 0;

}

.row{

    display:flex;

    gap:20px;

}

.row .box{

    flex:1;

}
.box p {

    background: rgba(188, 209, 209,.75);

    color: #2C5D63;

    padding: 12px;

    border-radius: 12px;
}

body {
  margin: 0;
  font-family: times-new-roman, sans-serif;
  background: linear-gradient(135deg, #dff6ff, #cfe9ff);
  color: #1a1a1a;
}

.nav {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #cfe9ff;
}

.nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: bold;
}

.card {
  display: flex;
  max-width: 800px;
  margin: 60px auto;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}



.pfp {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #a7d8ff;
  box-shadow: 0 0 10px rgba(167, 216, 255, 0.6);
}

.name {
  font-size: 20px;
  font-weight: bold;
}

.subtitle {
  font-size: 12px;
  opacity: 0.7;
}

.card-right {
  width: 65%;
  padding: 25px;
}

.section {
  margin-bottom: 18px;
}

h1 {
  letter-spacing: 2px;
  color: #4a90c2;
}

.section h2 {
  font-size: 14px;
  color: #4a90c2;
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

