* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
    height: 42px;
    overflow: hidden;
}

.banner-container {
    /* width: 272px; */
    height: 42px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    margin: 0 auto;
    width: 100%;

    border-radius: 8px;
    border: 1px solid #49A431;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    text-decoration: none;
}