/* Footer styles */
.footer {
    background-color: #dedbdb; /* dark gray */
    /* padding: 30px 10px; increase vertical padding, decrease horizontal padding */
    color: #2e2e2e; /* light gray */
    font-size: 16px; /* larger font size */
    text-align: center;
    position: relative; /* change to fixed */
    left: 0;
    bottom: 0;
    width: 100%;
    font-family: 'Lato', sans-serif; /* add a stylish font */
    padding: 1px;
    margin: 120px 0 0 0;
}

/* add a footer copyright text style */
.footer .copyright {
    margin-top: 15px;
    font-size: 14px;
    color: #777777; /* lighter gray */
}

/* Social media icons */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 30px; /* increase margin */
}

.social-icons a {
    display: inline-block;
    margin: 0 15px; /* increase margin */
    color: #2e2e2e; /* light gray */
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.social-icons a:hover {
    color: #77041E; /* pink */
}

/* Circle animation */
.circle {
    display: inline-flex; /* change to inline-flex */
    width: 50px; /* larger circle */
    height: 50px; /* larger circle */
    background-color: #2f3640; /* dark gray */
    border: 2px solid #f1f1f1; /* add a border */
    border-radius: 50%;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.circle:hover {
    background-color: #77041E; /* pink */
    border-color: #77041E; /* pink */
}

/* Media queries for responsive design */
/* @media (max-width: 600px) {
    .social-icons {
        flex-direction: column;
    }

    .social-icons a:before,
    .social-icons a:after {
        display: none;
    }
} */

body, html {
    margin: 0;
    padding: 0;
  }