/* reset basic spacing */
body{
    background-color: black;
    margin: 0;
}

/* TOP BAR */
#topBar{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

#topBar img{
    width: 100%;
    max-width: 1200px;
    height: auto;
}

/* MARQUEE */
.marquee{
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    background: black;
    white-space: nowrap;
}

.marqueeText{
    color: yellow;
    font-size: large;
    display: inline-block;
    padding-left: 100%;
    animation: scroll 6s linear infinite;
}

@keyframes scroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-100%); }
}

/* IMAGE BAR UNDER TOP */
#underBar{
    width: 100%;
    display: flex;
}

#underBar img{
    width: 50%;
    height: 120px;
    object-fit: cover;
}

/* MAIN BLOG AREA */
#main{
    background: white;
    border: 2px purple dotted;
    margin: 20px auto;
    padding: 20px;
    max-width: 900px;
}

/* BOTTOM IMAGE */
#yohurt{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 200px;
}