

footer {
    display:grid;
    text-align: center;
    padding: 10vh 5vw;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
}

.footer-title {
    font-size: 2.5rem;
}

.footer-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    font-size: 1.5rem;
    align-items: center;
}

.footer-details .address p {
    margin: 0 0;
    padding: 0 0;
}

.footer-details .contact {
    display: flex;
    flex-direction: column;
}

.footer-details .social {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer-details a {
    text-decoration: none;
    color: #402620;
}

.footer-details a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    
    footer {
        padding: 30px 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    .footer-title {
        font-size: 1.5rem;
    }

    .footer-details {
        flex-direction: column;
        gap: 20px;
        border-top: 1px solid #402620;
        font-size: 1rem;
    }

    .footer-details div {
        margin-top: 10px;
    }
}