* {
    box-sizing: border-box;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    margin: 0;
}
body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
}
img {
    height: 70px;
    width: 200px;
    padding: 5px;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
}
#ticker {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    overflow: hidden;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    background-color: rgb(221, 221, 221);
}
#headlines {
    position: absolute;
    left: 100%;
    white-space: nowrap;
}

#headlines a {
    padding-right: 50px;
    color: black;
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
}
#headlines a:visited {
    color: rgb(0, 0, 0);
}
