@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

main {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.main-h1 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 50px;
    height: 50px;
    padding: 2px;
    background-color: #fff;
    border-radius: 50%;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h2 {
    font-size: 1rem;
    color: #0a0a0a;
}

p {
    margin: 10px 0;
}

ul {
    margin: 10px 0;
    padding-left: 20px;
}


footer {
    width: 100%;
    padding: 40px 80px;
    /* background-color: #f5f5f5; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.address {
    margin-top: 10px;
    width: 40%;
    text-align: center;
    font-size: .9rem;
    color: #252525;
    padding: 5px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    font-weight: 600;
    color: #252525;
    padding: 20px 0;
}

.copyright {
    width: 100%;
    background: linear-gradient(rgba(16, 0, 135, 0.918), rgba(20, 0, 169, 0.868)), url('../public/hero.jpg') no-repeat center center/cover;
    color: white;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 80px;
    text-align: center;
}


@media (max-width: 768px) {
    footer {
        width: 100%;
        padding: 30px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .address {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        font-size: .9rem;
        color: #252525;
        padding: 5px;
    }

    .copyright {
        width: 100%;
        background: linear-gradient(rgba(16, 0, 135, 0.918), rgba(20, 0, 169, 0.868)), url('../public/hero.jpg') no-repeat center center/cover;
        color: white;
        font-size: .8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 10px 15px;
        text-align: center;
    }
}