.page img {
    width: 20%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.topnav {
    display: flex;
    justify-content: space-evenly;
    background-color: #262726;
    box-shadow: 4px 4px 100px #262726;
    width: 100%;
}

.topnav a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 16px 16px;
    font-family: 'Arial';
    margin: 0;
    border-style: none;
    animation: swipe 0.5s;
    font-weight: 10;
}

.topnav a:hover {
    animation: topnavhover 0.3s;
    animation-fill-mode: forwards;
}

@keyframes topnavhover {
    0% {
    }
    
    100% {
        transform: translateY(-5px);
    }
}

@keyframes swipe {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
    }
    
}


@media (max-width: 1400px) {
    .topnav {
        flex-direction: column;
        background: #262726;
    }

    .Logo {
        display: none;
    }

    .topnav a {
        display: block;
        cursor: pointer;
        color: white;
        text-align: center;

    }
}
    
    .breakingnewsmarquee {
        height: auto;
        background-color: lightgray;
        width: 100%;
    }
    
    .breakingnewsmarquee a {
        color: black;
        text-decoration: none;
    }
    

