* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
    height: 15vh;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(
        to right,
        rgb(55, 122, 223),
        rgb(99, 160, 184),
        rgb(241, 146, 146)
    );
}

.nav { width: 100%; }

.nav ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    margin: 0;
}

.nav ul li { cursor: pointer; }

.nav ul li a,
.nav ul li {
    font-family: 'EB Garamond', serif;
    font-size: 40px;
    text-decoration: none;
    color: hsl(219, 69%, 42%);
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 10px rgba(100, 120, 200, 0.25);
}

.nav ul li a:hover,
.nav ul li:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(180, 100, 160, 0.4);
}

.nav ul li a.active {
    background: linear-gradient(135deg, rgb(55, 122, 223), rgb(241, 146, 146));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav ul li:hover { color: white; }

.aside {
    flex: 1;
    background-color: rgba(198, 220, 238, 0.7);
    background-image: url(put5.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    font-family: "EB Garamond", serif;
    display: flex;
    align-items: center;
}

.parent {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 60px;
    font-size: 40px;
    font-family: "EB Garamond", serif;
    color: rgb(5, 114, 187);
}

.karLi {
    width: 350px;
    height: 450px;
    border-radius: 50px;
    object-fit: cover;
    display: block;
    box-shadow:
        0 0 15px 5px rgb(241, 146, 146),
        0 0 30px 10px rgb(99, 160, 184);
}

.logo-img2 {
    width: 350px;
    height: 450px;
    border-radius: 50px;
    object-fit: cover;
    display: block;
    box-shadow:
        0 0 15px 5px rgb(241, 146, 146),
        0 0 30px 10px rgb(99, 160, 184);
}

.footer {
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    font-family: "EB Garamond", serif;
    background-image: linear-gradient(
        to left,
        rgb(55, 122, 223),
        rgb(99, 160, 184),
        rgb(241, 146, 146)
    );
}

@media (max-width: 768px) {
    .header { height: auto; padding: 16px 20px; }
    .nav ul { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 10px 16px; }
    .nav ul li a, .nav ul li { font-size: 22px; }
    .parent { flex-direction: column; align-items: center; text-align: center; font-size: 24px; padding: 30px 20px; gap: 30px; }
    .karLi, .logo-img2 { width: 220px; height: 280px; }
}