.banner-ads {
    display: flex;
    align-items: center;
    justify-content: center;
    
    
}
.banner-ads .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    width: 100%;
    height: 600px;
    padding: 15px;
    text-align: center;
    background-color: #fed42b;
}
.banner-ads .box .title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 100px;
}
.banner-ads .box .contact-name {
    margin-top: 40px;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    border: 5px solid #333;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
}
.banner-ads .box .contact-info {
    margin-top: 70px;
    font-size: 35px;
    font-weight: bold;
}
.ads-link {
    text-decoration: none;
    color: inherit;
}
.ads-link:hover {
    text-decoration: none;
    color: #008ac5;
}