body {
    margin: 0;
    overflow: hidden;
}

main{
    height: 90vh;
    position: relative;
}

#bannerBig{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner {
    color: #ffffff;
    font-size: 24px;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    height: 50%;
    width: fit-content;
    background-color: #493830;
    border-radius: 20px;
    max-width: 100%;
    max-height: 100%;
    transition: linear;
    border: 10px solid antiquewhite;
}

.scrolling-text {
    animation: scrollText 10s linear infinite;
}

.smallBanner {
    height: 33.33%;
    display: flex;
    align-items: center;
}

.smallBanner:first-child, .smallBanner:last-child{
    justify-content: center;
    font-size: xx-large;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media only screen and (max-width: 470px) {
    .smallBanner:first-child, .smallBanner:last-child{
        font-size: large;
    }

    .scrolling-text{
        font-size: x-large;
    }
  }