html, body {
    height: 100%;
    margin: 0;
    background-color: #ffd1df;
    font-family: 'Baloo 2', cursive;
}

body {
    display: flex;
    flex-direction: column;
}

/* =========================
   HEADER
========================= */

header {
    width: 90%;
    margin: 20px auto 0;
    padding: 15px 30px;
    box-sizing: border-box;

    background-color: white;
    border: 3px solid #fedae6;
    border-radius: 60px;

    box-shadow: 0 8px 15px rgb(255, 255, 255);

    /* Allows elements to be positioned relative to the header */
    position: relative;
}

/* =========================
   NAVIGATION
========================= */

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

header nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Dancing Script', cursive;
    color: #fedae6;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;

    /* Smooth hover animation */
    transition: transform 0.2s ease, color 0.2s ease;
}

header nav a:hover {
    transform: scale(1.1);
    color: #f7c6d9;
}

header nav a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* =========================
   WEBSITE LOGO
========================= */

.website-logo {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.website-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.website-logo:hover {
    transform: translateY(-50%) scale(1.1);
}

/* =========================
   SEARCH ICON
========================= */

.search-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.search-icon:hover {
    transform: translateY(-50%) scale(1.3);
}

/* =========================
   FOOTER
========================= */

footer {
    width: 95%;
    margin: auto auto 20px;
    padding: 20px 30px;
    box-sizing: border-box;
    background-color: white;
    border: 3px solid #fedae6;
    border-radius: 10px;
    text-align: center;
}

footer p {
    margin: 0;
    color: #fedae6;
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 10px;
}