* {
    box-sizing: border-box;
    /* border : 1px solid red; */
}

/* To copy-paste in your CSS Style Sheet!!!*/
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
/* Footer Styling */
footer {
    bottom: 0;
    width: 100%;
}



/* Footer Top Styling*/
.footer-top {
    background-color: #FAD1E2; /* Change the color later*/
    color: #F76AA7; /* Change the color later*/
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 90%;
    border-radius: 25px;
    margin: 25px auto;
}

.footer-top-container {
    display: flex;
    flex-direction: row;
    padding: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}
.footer-top-left, .footer-top-middle, .footer-top-right {
    display: flex;
    flex-direction: column;
    width: 30%;
    padding: 10px;
    align-items: center;
}

.footer-top-left {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.footer-top-left img {
    width: 100px;
    height: 100px;
    border-radius: 25%;
}

.footer-top-middle {
    border-right: solid #F76AA7 1px; /* Change the color later*/
    border-left: solid #F76AA7 1px; /* Change the color later*/
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.footer-top-right h2 {
    font-size: 24px;
    padding: 10px;
    font-family: "Sour Gummy", serif; /* Change the font later*/
}
.footer-top-middle a {
    color: #F76AA7;
    text-decoration: none;  
    padding: 5px;
    font-family: "Poppins", sans-serif;  /* Change the font later*/
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-top-middle a:hover {
    color: red; /* Change the color later*/
    border-bottom: solid red 1px; /* Change the font later*/
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.footer-top-button {
    background-color: #F76AA7; /* Change the color later*/
    color: white;  /* Change the color later*/
    border-radius: 25px;
    padding: 10px 30px;
    margin: 10px 0;
    align-self: center;
}

.footer-top-button a {
    color: white;  /* Change the color later*/
    text-decoration: none;
    font-size: 18px;
    font-family: "Poppins", sans-serif;  /* Change the font later*/
}

.footer-top-button a:hover {
    color: red; /* Change the color later*/
}

/* Footer Bottom Styling */
.footer-bottom {
    background-color: #F76AA7; /* Change the color later*/
    color: white;  /* Change the color later*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.footer-bottom-item {
    width: 30%;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    padding: 10px;
    font-family: "Poppins", sans-serif;  /* Change the font later*/
}
.footer-bottom .fa-linkedin,.footer-bottom .fa-instagram,.footer-bottom .fa-facebook {
    font-size: 30px;
    padding: 10px;
    color: white; /* Change the color later*/
}

.footer-bottom .fa-linkedin:hover,.footer-bottom .fa-instagram:hover,.footer-bottom .fa-facebook:hover {
    color: red; /* Change the color later*/
}

.fa-heart {
    color: red; /* Change the color later*/;
}