
html,
body,
main {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    user-select: none;          
    background-image: url('../images/world_topo.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

main {
    overflow-y: auto;
}


.ribbon {    
    background-color: rgba(0, 30, 40, 0.60);
    width: 420px;
    height: 100%;
    margin-left: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.logo > img {
    width: 100%;
}


.news {
    background-color: rgba(150, 40, 40, 1);
    color: white;
    width: 100%;
    margin: 2px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    padding: 5px;
    border-radius: 14px;
}

    .news .link {
        color: cyan;
    }

@media (max-width: 450px) {
    .ribbon {
        width: 100%;
        margin-left: 0;
        padding: 2px;
        height: unset;
    }

    .news {
        padding: 1px;
    }
}

@media (max-height: 600px) {
    .ribbon { 
        height: unset;
    }

    .logo > img {
        height: 50px;
        width: auto;
    }
}

