body {
    margin: 0;
    padding: 0;
    background-color: white;
}

/* Mainheaderpart starts */
    header {
        background-color: #E1C9C0; 
        padding: 10px;
        border-bottom-left-radius: 260px; 
        border-bottom-right-radius: 260px; 
        box-shadow: 0 0.08rem 0.15rem black;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between; 
        font-family: Josefin Sans;
    }

    .navlist {
        list-style: none;
        margin: 0; 
        padding: 0;
        margin-right: 50px;
    }

    .navlist li {
        display: inline;
        background-color: white;
        padding: 30px;
        box-shadow: 0 0.08rem 0.15rem black;
        border-radius: 45px;
    }

    .logo {
        width:150px; 
        height: auto; 
        margin-left: 50px;
    }

    .navlist a{
        text-decoration: none;
        color:black
    }

    .navlist a:hover {
        color: #fff;
    }


    .navlist li:hover {
        background-color: #A8BAC3;
        transform:rotate(30);
    }

/* Mainheader part ends */

/* Sparkly mouse */

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: white;
    border-radius: 100%;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/* Sparkly mouse */


/* Footer Starts */

.footer{
    width:100%;
    height: 300px;
    z-index: -1;
    background-color:#A8BAC3;
    border-top-left-radius: 260px;
    border-top-right-radius: 260px;
    margin-bottom: 0;
    position: relative;
}

.left{
    font-family: Josefin Sans;
    margin-left:150px;
    position: absolute;
    margin-bottom: 50px;
    color: white;
    line-height: 35px;
    padding:50px
}

.left a{
    text-decoration: none;
    color:black;
    padding: 15px;
    background-color: #E1C9C0;
    border:2px solid white;
    cursor:pointer;
}



.imging{
    width:270px; 
    height: auto; 
    margin-left: 700px;
    position:absolute;
}


/* Footer ends */


/* Continents-head starts */

.continents-head{
    text-align: center;
    padding: 20px 30px;
    background-color: #A8BAC3;
    font-family: Satisfy;
    font-size: 40px;
    position: relative;
    margin: 75px 450px 450px;
    margin-bottom: 75px;
    display: block;
    color:white;
    text-shadow:0 0.08rem 0.15rem black;
    border-radius: 30px;
    box-shadow: 0 0.08rem 0.15rem black;
}

/* Continents-head ends */


/* Container of places starts */


.image {
    border-radius: 100%;
    width: 225px;
    height: 225px;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
    margin-bottom: 75px;
    margin-right: 50px;
    margin-left: 50px;
    align-items: center;
    animation: move-down 1.5s ease-in infinite alternate;
    transition: transform 0.5s;
}

@keyframes move-down {
    from {
        transform: translateY(-15px);
    }
    to {
        transform: translateY(0);
    }
}

.container {
    text-align: center;
}



