body {
    margin: 0;
    font-family: Roboto;
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
}

.banner {
    display: flex;
    align-items: center;
    background: #F58634;
    width: 100%;
    max-width: 728px;
    height: 90px;
    animation-name: background;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    position: relative;
    border: 1px solid black;
}

.banner a {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner figure {
    background: white;
    border-right: 2px solid black;
    flex: 1;
    max-width: 120px;
    text-align: center;
    margin: 0;
    height: calc(100% - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.banner figure img {
    width: 100%;
    height: auto;
}

.banner p {
    text-align: center;
    flex: 1;
}

@keyframes background {
    0% {
        background-color: #F58634;
        color: black;
    }
    25% {
        background-color: #F58634;
        color: black;
    }
    50% {
        background-color: black;
        color: #F58634;
    }
    100% {
        background-color: black;
        color: #F58634;
    }
}

@media (max-width: 768px) {

    body {
        font-size: 22px;
    }
    
}