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

html {
    height: 100%;
}

.container {
  
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.ticker-box {
    display: grid;
    grid-template-columns: 1fr 10fr;
    grid-gap: 20px;
    align-items: center;
    font-size: 25px;
    background: #5F2580;
    box-shadow: 4px 8px 5px 0 rgba(0, 0, 0, .5);
}

.ticker-body {
    padding: 20px 20px;
    color: white;
}

.ticker-title {
    text-align: center;
    text-transform: uppercase;
    padding: 20px;
    background-color: #48036F;
    color: white;
}