/* style.css */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #000;
    color: #fff;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__icon {
    height: 60px;
    width: auto;
}

.main {
    padding: 60px 0;
}

.banner-section {
    text-align: center;
}

.banner-link {
    display: inline-block;
}

.banner-text {
    margin-top: 20px;
    font-size: 2.4rem;
    font-weight: bold;
    color: #000;
}

.footer {
    background-color: #000;
    color: #fff;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-size: 1.4rem;
}