* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

body {

    background: #f4f6f9;
    display: flex;
    justify-content: center;
    padding: 30px 15px;
}

.container {
    width: 100%;
    max-width: 1100px;
}

.mainDiv {

    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
    overflow: hidden;

}

.mainDiv h1 {

    background: #0d6efd;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 30px;

}

.address {

    background: #d1e7dd;
    color: #0f5132;
    padding: 12px 20px;
    font-weight: bold;

}

.about {

    padding: 20px;
    color: #555;
    line-height: 28px;
    font-size: 17px;

}

.mainDiv h2 {

    text-align: center;
    margin: 15px 0;
    color: #333;

}

.tableBox {

    overflow-x: auto;
    padding: 15px;

}

table {

    width: 100%;
    border-collapse: collapse;
    min-width: 600px;

}

th {

    background: #0d6efd;
    color: white;
    padding: 14px;

}

td {

    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;

}

tr:nth-child(even) {

    background: #f8f8f8;

}

tr:hover {

    background: #e9f2ff;

}

.follow {

    background: #fafafa;
    padding: 25px;

}

.follow ul {

    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;

}

.follow li {

    background: #0d6efd;
    color: white;
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;

}

.follow li:hover {

    background: #084298;
    transform: translateY(-4px);

}
.follow a {
    color: white;
}

/* Mobile */

@media(max-width:768px) {

    .mainDiv h1 {

        font-size: 24px;

    }

    .about {

        font-size: 15px;
        line-height: 24px;

    }

    .follow ul {

        flex-direction: column;
        align-items: center;

    }

    .follow li {

        width: 220px;
        text-align: center;

    }

    table {

        min-width: 500px;

    }

}

/* Small Mobile */

@media(max-width:480px) {

    .mainDiv h1 {

        font-size: 20px;

    }

    .address {

        font-size: 14px;

    }

    .about {

        font-size: 14px;

    }

}